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