public enum EnumDataPathAssignment extends java.lang.Enum<EnumDataPathAssignment>
| Enum Constant and Description |
|---|
PRIMARY_PVALUES
The PRIMARY_PVALUES.
|
PRIMARY_SINGLE
The PRIMARY_SINGLE.
|
SECONDARY_HIGH
The SECONDARY_HIGH.
|
SECONDARY_LOW
The SECONDARY_LOW.
|
SECONDARY_SINGLE
The SECONDARY_SINGLE.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumDataPathAssignment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumDataPathAssignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumDataPathAssignment PRIMARY_PVALUES
public static final EnumDataPathAssignment PRIMARY_SINGLE
public static final EnumDataPathAssignment SECONDARY_SINGLE
public static final EnumDataPathAssignment SECONDARY_HIGH
public static final EnumDataPathAssignment SECONDARY_LOW
public static EnumDataPathAssignment[] values()
for (EnumDataPathAssignment c : EnumDataPathAssignment.values()) System.out.println(c);
public static EnumDataPathAssignment 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 getValue()