public static enum Registry.KnownTags extends java.lang.Enum<Registry.KnownTags>
Enum Constant and Description |
---|
PRODUCTION
The PRODUCTION.
|
Modifier and Type | Method and Description |
---|---|
static Registry.KnownTags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Registry.KnownTags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Registry.KnownTags PRODUCTION
public static Registry.KnownTags[] values()
for (Registry.KnownTags c : Registry.KnownTags.values()) System.out.println(c);
public static Registry.KnownTags valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null