Enum Keys.Namespace
- java.lang.Object
-
- java.lang.Enum<Keys.Namespace>
-
- com.netflix.spinnaker.clouddriver.tencentcloud.cache.Keys.Namespace
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Keys.Namespace>
- Enclosing class:
- Keys
public static enum Keys.Namespace extends java.lang.Enum<Keys.Namespace>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPLICATIONSCLUSTERSHEALTH_CHECKSIMAGESINSTANCE_TYPESINSTANCESKEY_PAIRSLAUNCH_CONFIGSLOAD_BALANCERSNAMED_IMAGESNETWORKSON_DEMANDSECURITY_GROUPSSERVER_GROUPSSUBNETS
-
Field Summary
Fields Modifier and Type Field Description java.lang.Stringns
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Keys.NamespacefromString(java.lang.String name)java.lang.StringtoString()static Keys.NamespacevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Keys.Namespace[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APPLICATIONS
public static final Keys.Namespace APPLICATIONS
-
CLUSTERS
public static final Keys.Namespace CLUSTERS
-
HEALTH_CHECKS
public static final Keys.Namespace HEALTH_CHECKS
-
LAUNCH_CONFIGS
public static final Keys.Namespace LAUNCH_CONFIGS
-
IMAGES
public static final Keys.Namespace IMAGES
-
NAMED_IMAGES
public static final Keys.Namespace NAMED_IMAGES
-
INSTANCES
public static final Keys.Namespace INSTANCES
-
INSTANCE_TYPES
public static final Keys.Namespace INSTANCE_TYPES
-
KEY_PAIRS
public static final Keys.Namespace KEY_PAIRS
-
LOAD_BALANCERS
public static final Keys.Namespace LOAD_BALANCERS
-
NETWORKS
public static final Keys.Namespace NETWORKS
-
SECURITY_GROUPS
public static final Keys.Namespace SECURITY_GROUPS
-
SERVER_GROUPS
public static final Keys.Namespace SERVER_GROUPS
-
SUBNETS
public static final Keys.Namespace SUBNETS
-
ON_DEMAND
public static final Keys.Namespace ON_DEMAND
-
-
Method Detail
-
values
public static Keys.Namespace[] 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 (Keys.Namespace c : Keys.Namespace.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Keys.Namespace valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
fromString
public static Keys.Namespace fromString(java.lang.String name)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<Keys.Namespace>
-
-