public enum Alternate extends Enum<Alternate>
| Enum Constant and Description |
|---|
NON_IGNORABLE |
SHIFTED |
| Modifier and Type | Method and Description |
|---|---|
static Alternate |
fromString(String alternateValue) |
String |
toString() |
static Alternate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Alternate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Alternate NON_IGNORABLE
public static final Alternate SHIFTED
public static Alternate[] values()
for (Alternate c : Alternate.values()) System.out.println(c);
public static Alternate valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021 Eclipse. All rights reserved.