public static enum CompareDialog.HowMuch extends java.lang.Enum<CompareDialog.HowMuch>
Enum Constant and Description |
---|
All |
varNameOnly |
varOnly |
Modifier and Type | Method and Description |
---|---|
static CompareDialog.HowMuch |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompareDialog.HowMuch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompareDialog.HowMuch All
public static final CompareDialog.HowMuch varOnly
public static final CompareDialog.HowMuch varNameOnly
public static CompareDialog.HowMuch[] values()
for (CompareDialog.HowMuch c : CompareDialog.HowMuch.values()) System.out.println(c);
public static CompareDialog.HowMuch 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 null