public enum StringInfo extends java.lang.Enum<StringInfo>
Enum Constant and Description |
---|
ANNOTATION |
COPYRIGHT |
DATE |
RESULT |
ROUND |
RULES |
SOURCE |
USER |
Modifier and Type | Method and Description |
---|---|
static StringInfo |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StringInfo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringInfo ANNOTATION
public static final StringInfo COPYRIGHT
public static final StringInfo DATE
public static final StringInfo RESULT
public static final StringInfo ROUND
public static final StringInfo RULES
public static final StringInfo SOURCE
public static final StringInfo USER
public static StringInfo[] values()
for (StringInfo c : StringInfo.values()) System.out.println(c);
public static StringInfo 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