public enum AnalysisLabelType extends java.lang.Enum<AnalysisLabelType>
Enum Constant and Description |
---|
INPUT_FILENAME |
SITE_CODE |
SITE_NAME |
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
humanReadable |
Modifier and Type | Method and Description |
---|---|
static AnalysisLabelType |
fromName(java.lang.String name)
Create an AnalysisLabelType from a string name.
|
java.lang.String |
toString()
Get the human-readable string name for this AnalysisLabelType.
|
static AnalysisLabelType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AnalysisLabelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnalysisLabelType INPUT_FILENAME
public static final AnalysisLabelType SITE_CODE
public static final AnalysisLabelType SITE_NAME
public static AnalysisLabelType[] values()
for (AnalysisLabelType c : AnalysisLabelType.values()) System.out.println(c);
public static AnalysisLabelType 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<AnalysisLabelType>
public static AnalysisLabelType fromName(java.lang.String name)
name
-