org.jclouds.aws.ec2.util
Enum TagFilters.ResourceType

java.lang.Object
  extended by java.lang.Enum<TagFilters.ResourceType>
      extended by org.jclouds.aws.ec2.util.TagFilters.ResourceType
All Implemented Interfaces:
Serializable, Comparable<TagFilters.ResourceType>
Enclosing class:
TagFilters

public static enum TagFilters.ResourceType
extends Enum<TagFilters.ResourceType>


Enum Constant Summary
CUSTOMER_GATEWAY
           
DHCP_OPTIONS
           
IMAGE
           
INSTANCE
           
INTERNET_GATEWAY
           
NETWORK_ACL
           
RESERVED_INSTANCES
           
ROUTE_TABLE
           
SECURITY_GROUP
           
SNAPSHOT
           
SPOT_INSTANCES_REQUEST
           
SUBNET
           
VOLUME
           
VPC
           
VPN_CONNECTION
           
VPN_GATEWAY
           
 
Method Summary
static TagFilters.ResourceType fromValue(String name)
           
 String toString()
           
 String value()
           
static TagFilters.ResourceType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TagFilters.ResourceType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CUSTOMER_GATEWAY

public static final TagFilters.ResourceType CUSTOMER_GATEWAY

DHCP_OPTIONS

public static final TagFilters.ResourceType DHCP_OPTIONS

IMAGE

public static final TagFilters.ResourceType IMAGE

INSTANCE

public static final TagFilters.ResourceType INSTANCE

INTERNET_GATEWAY

public static final TagFilters.ResourceType INTERNET_GATEWAY

NETWORK_ACL

public static final TagFilters.ResourceType NETWORK_ACL

RESERVED_INSTANCES

public static final TagFilters.ResourceType RESERVED_INSTANCES

ROUTE_TABLE

public static final TagFilters.ResourceType ROUTE_TABLE

SECURITY_GROUP

public static final TagFilters.ResourceType SECURITY_GROUP

SNAPSHOT

public static final TagFilters.ResourceType SNAPSHOT

SPOT_INSTANCES_REQUEST

public static final TagFilters.ResourceType SPOT_INSTANCES_REQUEST

SUBNET

public static final TagFilters.ResourceType SUBNET

VOLUME

public static final TagFilters.ResourceType VOLUME

VPC

public static final TagFilters.ResourceType VPC

VPN_CONNECTION

public static final TagFilters.ResourceType VPN_CONNECTION

VPN_GATEWAY

public static final TagFilters.ResourceType VPN_GATEWAY
Method Detail

values

public static TagFilters.ResourceType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (TagFilters.ResourceType c : TagFilters.ResourceType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static TagFilters.ResourceType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

value

public String value()

toString

public String toString()
Overrides:
toString in class Enum<TagFilters.ResourceType>

fromValue

public static TagFilters.ResourceType fromValue(String name)


Copyright © 2009-2012 jclouds. All Rights Reserved.