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