public enum RowOrColumnMajor extends java.lang.Enum<RowOrColumnMajor> implements INativeEnum
Enum Constant and Description |
---|
ColumnMajor
Data in the table should be read column by column.
|
Indeterminate
The best way to present the data is indeterminate.
|
RowMajor
Data in the table should be read row by row.
|
Modifier and Type | Method and Description |
---|---|
static java.util.Optional<RowOrColumnMajor> |
fromNativeValue(int nativeValue) |
java.lang.String |
getConstantName() |
int |
getNativeValue() |
static RowOrColumnMajor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RowOrColumnMajor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RowOrColumnMajor RowMajor
public static final RowOrColumnMajor ColumnMajor
public static final RowOrColumnMajor Indeterminate
public static RowOrColumnMajor[] values()
for (RowOrColumnMajor c : RowOrColumnMajor.values()) System.out.println(c);
public static RowOrColumnMajor 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 int getNativeValue()
getNativeValue
in interface INativeEnum
public java.lang.String getConstantName()
getConstantName
in interface INativeEnum
public static java.util.Optional<RowOrColumnMajor> fromNativeValue(int nativeValue)