public enum ReportWriteOptionValues extends java.lang.Enum<ReportWriteOptionValues>
List of writing options.
Modifier and Type | Method and Description |
---|---|
static ReportWriteOptionValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReportWriteOptionValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportWriteOptionValues _N
Prohibits any automatic reformulation of the print option, in a conversion Library.
public static final ReportWriteOptionValues NONE
According to variant : Print options are generated according to the hardware variant indicated at the Library level. For conversion Libraries, the print options are automatically reformulated according to the Library variant.
public static final ReportWriteOptionValues STAR
Generation of the WRITE BEFORE statement.
public static ReportWriteOptionValues 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 ReportWriteOptionValues[] values()
for (ReportWriteOptionValues c : ReportWriteOptionValues.values()) System.out.println(c);