public enum NoChangeMarker extends java.lang.Enum<NoChangeMarker>
| Enum Constant and Description |
|---|
Cell
Gibt an, dass die Information, dass sich die Daten nicht geändert haben, für jede Zelle einzeln übertragen wird.
|
Row
Gibt an, dass die Information, dass sich die Daten nicht geändert haben, zeilenweise übertragen wird.
|
Undefined
Gibt an, dass der Default-Wert des Skriptes beibehalten werden soll, Wenn das Skript keine explizite Vorgabe macht, wird die Information
zeilenweise übertragen (
Row). |
| Modifier and Type | Method and Description |
|---|---|
static NoChangeMarker |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NoChangeMarker[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NoChangeMarker Row
public static final NoChangeMarker Cell
public static final NoChangeMarker Undefined
Row).public static NoChangeMarker[] values()
for (NoChangeMarker c : NoChangeMarker.values()) System.out.println(c);
public static NoChangeMarker 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 null