public enum EMode extends Enum<EMode>
| Enum Constant and Description |
|---|
COMPARE
Output mode.
|
INPUT
Input mode.
|
OUTPUT
Output mode.
|
| Modifier and Type | Method and Description |
|---|---|
static EMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EMode INPUT
public static final EMode OUTPUT
public static final EMode COMPARE
public static EMode[] values()
for (EMode c : EMode.values()) System.out.println(c);
public static EMode 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 © 2016. All rights reserved.