public enum FillingMode extends Enum<FillingMode> implements Key
Fill
.
true
the fill is applied, othewise false
.
Enum Constant and Description |
---|
absoluteDatasetIndex
Links datasets by absolute dataset index, as integer (1,2,3,...)
|
predefined
Predefined values by
Fill . |
predefinedBoolean
It is never really used, because the value is boolean.
|
relativeDatasetIndex
Links datastes by relative dataset index, as string ("-1", "-2", "+1", "+2",...)
|
Modifier and Type | Method and Description |
---|---|
static FillingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FillingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FillingMode absoluteDatasetIndex
public static final FillingMode relativeDatasetIndex
public static final FillingMode predefined
Fill
.public static final FillingMode predefinedBoolean
public static FillingMode[] values()
for (FillingMode c : FillingMode.values()) System.out.println(c);
public static FillingMode 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