public enum ReportContinuedValues extends java.lang.Enum<ReportContinuedValues>
List of types of continuation line.
Enum Constant and Description |
---|
NONE
First description line.
|
STAR
Continuation line.
|
Modifier and Type | Method and Description |
---|---|
static ReportContinuedValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReportContinuedValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportContinuedValues NONE
First description line.
public static final ReportContinuedValues STAR
Continuation line.
public static ReportContinuedValues 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 nullpublic static ReportContinuedValues[] values()
for (ReportContinuedValues c : ReportContinuedValues.values()) System.out.println(c);