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