public enum DeletedTreatment extends java.lang.Enum<DeletedTreatment>
TBD Dokumentation
Enum Constant and Description |
---|
Full
Gelöschte Datensätze werden als einzelne Datensätze zurückgegeben (Sonderbehandlung entsprechend
ContainerFile.deletedSpecialTreatment ) |
Ignore
Gelöschte Datensätze werden bei der Rückgabe ignoriert
|
MinMax
Gelöschte Datensätze werden als einzelner Datensatz mit Min- und Max-Wert zurückgegeben
|
Modifier and Type | Method and Description |
---|---|
static DeletedTreatment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeletedTreatment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeletedTreatment Ignore
public static final DeletedTreatment MinMax
public static final DeletedTreatment Full
ContainerFile.deletedSpecialTreatment
)public static DeletedTreatment[] values()
for (DeletedTreatment c : DeletedTreatment.values()) System.out.println(c);
public static DeletedTreatment 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