public enum NFEEditionMode extends java.lang.Enum<NFEEditionMode>
| Enum Constant and Description |
|---|
FEATURES_FROM_SCRATCH
Represents the FromScratch edition mode
|
FEATURES_OVER_EXISTING_NETWORK
Represents the OverExistingNetwork edition mode
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue()
Gets the ordinal value of the current enum value
|
java.lang.String |
toString() |
static NFEEditionMode |
valueOf(int editionModeValue)
Gets an enum value corresponding to the given ordinal
|
static NFEEditionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NFEEditionMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final NFEEditionMode FEATURES_FROM_SCRATCH
public static final NFEEditionMode FEATURES_OVER_EXISTING_NETWORK
public static NFEEditionMode[] values()
for (NFEEditionMode c : NFEEditionMode.values())
System.out.println(c);
public static NFEEditionMode 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<NFEEditionMode>public int getValue()
public static NFEEditionMode valueOf(int editionModeValue)
editionModeValue - an ordinal that corresponds to an enum value