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

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

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


Enum Constant Summary
KEY
           
RESOURCE_ID
           
RESOURCE_TYPE
           
VALUE
           
 
Method Summary
static TagFilters.FilterName fromValue(String name)
           
 String toString()
           
 String value()
           
static TagFilters.FilterName valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TagFilters.FilterName[] 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

KEY

public static final TagFilters.FilterName KEY

RESOURCE_ID

public static final TagFilters.FilterName RESOURCE_ID

RESOURCE_TYPE

public static final TagFilters.FilterName RESOURCE_TYPE

VALUE

public static final TagFilters.FilterName VALUE
Method Detail

values

public static TagFilters.FilterName[] 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.FilterName c : TagFilters.FilterName.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.FilterName 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.FilterName>

fromValue

public static TagFilters.FilterName fromValue(String name)


Copyright © 2009-2012 jclouds. All Rights Reserved.