public static enum MatrixSettings.RelationOption extends java.lang.Enum<MatrixSettings.RelationOption>
Enum Constant and Description |
---|
ALL |
COLUMNS_WITHOUT_RELATIONS |
ROWS_WITHOUT_RELATIONS |
WITH_RELATIONS |
WITHOUT_RELATIONS |
Modifier and Type | Method and Description |
---|---|
static MatrixSettings.RelationOption |
getEnum(java.lang.String type)
Finds enum by its type
|
java.lang.String |
getType()
Representation type of this enum (literal values)
|
static MatrixSettings.RelationOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MatrixSettings.RelationOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatrixSettings.RelationOption WITH_RELATIONS
public static final MatrixSettings.RelationOption ALL
public static final MatrixSettings.RelationOption WITHOUT_RELATIONS
public static final MatrixSettings.RelationOption COLUMNS_WITHOUT_RELATIONS
public static final MatrixSettings.RelationOption ROWS_WITHOUT_RELATIONS
public static MatrixSettings.RelationOption[] values()
for (MatrixSettings.RelationOption c : MatrixSettings.RelationOption.values()) System.out.println(c);
public static MatrixSettings.RelationOption 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 java.lang.String getType()
public static MatrixSettings.RelationOption getEnum(java.lang.String type)
type
- type to find