public static enum Diff.Mode extends Enum<Diff.Mode>
Enum Constant and Description |
---|
CLASS_FILE_DIFF |
HEX_DIFF |
JAVAP |
LIST_FILES |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Diff.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Diff.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Diff.Mode LIST_FILES
public static final Diff.Mode JAVAP
public static final Diff.Mode CLASS_FILE_DIFF
public static final Diff.Mode HEX_DIFF
public static Diff.Mode[] values()
for (Diff.Mode c : Diff.Mode.values()) System.out.println(c);
public static Diff.Mode 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 © 2014–2022 ImageJ. All rights reserved.