public enum FillingMode extends Enum<FillingMode> implements Key
Fill.
 true the fill is applied, othewise false.
 | Enum Constant and Description | 
|---|
| ABSOLUTE_DATASET_INDEXLinks datasets by absolute dataset index, as integer (1,2,3,...) | 
| PREDEFINEDPredefined values by  Fill. | 
| PREDEFINED_BOOLEANIt is never really used, because the value is boolean. | 
| RELATIVE_DATASET_INDEXLinks datastes by relative dataset index, as string ("-1", "-2", "+1", "+2",...) | 
| Modifier and Type | Method and Description | 
|---|---|
| String | value()Returns the name value of property | 
| 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. | 
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfcheckIfValid, compare, create, equals, getKeyByValue, getKeyByValue, hasKeyByValue, isValidpublic static final FillingMode ABSOLUTE_DATASET_INDEX
public static final FillingMode RELATIVE_DATASET_INDEX
public static final FillingMode PREDEFINED
Fill.public static final FillingMode PREDEFINED_BOOLEAN
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