Enum TagResourceType
- java.lang.Object
-
- java.lang.Enum<TagResourceType>
-
- com.amazonaws.services.route53.model.TagResourceType
-
- All Implemented Interfaces:
Serializable
,Comparable<TagResourceType>
public enum TagResourceType extends Enum<TagResourceType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Healthcheck
Hostedzone
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TagResourceType
fromValue(String value)
Use this in place of valueOf.String
toString()
static TagResourceType
valueOf(String name)
Returns the enum constant of this type with the specified name.static TagResourceType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Healthcheck
public static final TagResourceType Healthcheck
-
Hostedzone
public static final TagResourceType Hostedzone
-
-
Method Detail
-
values
public static TagResourceType[] 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 (TagResourceType c : TagResourceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TagResourceType 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 nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<TagResourceType>
-
fromValue
public static TagResourceType fromValue(String value)
Use this in place of valueOf.- Parameters:
value
- real value- Returns:
- TagResourceType corresponding to the value
-
-