public enum DataSource extends java.lang.Enum<DataSource>
Enum.toString()
.valueOf(String)
.Enum Constant and Description |
---|
Comparison
Comparison data.
|
Input
Input data.
|
Reference
Reference data.
|
Modifier and Type | Method and Description |
---|---|
static DataSource |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataSource Input
public static final DataSource Reference
public static final DataSource Comparison
public static DataSource[] values()
for (DataSource c : DataSource.values()) System.out.println(c);
public static DataSource 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