Enum PropertyValue
- java.lang.Object
-
- java.lang.Enum<PropertyValue>
-
- de.befrish.testdatamt.domain.tree.PropertyValue
-
- All Implemented Interfaces:
Serializable
,Comparable<PropertyValue>
@Deprecated public enum PropertyValue extends Enum<PropertyValue>
Deprecated.- Author:
- Benno Müller
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANONYMES_DATEN_OBJEKT
Deprecated.DATEI_WERT
Deprecated.DATUMS_WERT
Deprecated.DEZIMALZAHL_WERT
Deprecated.GANZZAHL_WERT
Deprecated.LEERER_WERT
Deprecated.LISTEN_WERT
Deprecated.UHRZEIT_MIT_ZEITZONE_WERT
Deprecated.UHRZEIT_WERT
Deprecated.VERWEIS_WERT
Deprecated.WAHRHEITS_WERT
Deprecated.ZEICHENKETTEN_WERT
Deprecated.ZEITSTEMPEL_MIT_ZEITZONE_WERT
Deprecated.ZEITSTEMPEL_WERT
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Optional<PropertyValue>
findByValueClass(Class<?> valueClass)
Deprecated.static PropertyValue
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static PropertyValue[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LEERER_WERT
public static final PropertyValue LEERER_WERT
Deprecated.
-
ZEICHENKETTEN_WERT
public static final PropertyValue ZEICHENKETTEN_WERT
Deprecated.
-
WAHRHEITS_WERT
public static final PropertyValue WAHRHEITS_WERT
Deprecated.
-
GANZZAHL_WERT
public static final PropertyValue GANZZAHL_WERT
Deprecated.
-
DEZIMALZAHL_WERT
public static final PropertyValue DEZIMALZAHL_WERT
Deprecated.
-
DATUMS_WERT
public static final PropertyValue DATUMS_WERT
Deprecated.
-
UHRZEIT_WERT
public static final PropertyValue UHRZEIT_WERT
Deprecated.
-
UHRZEIT_MIT_ZEITZONE_WERT
public static final PropertyValue UHRZEIT_MIT_ZEITZONE_WERT
Deprecated.
-
ZEITSTEMPEL_WERT
public static final PropertyValue ZEITSTEMPEL_WERT
Deprecated.
-
ZEITSTEMPEL_MIT_ZEITZONE_WERT
public static final PropertyValue ZEITSTEMPEL_MIT_ZEITZONE_WERT
Deprecated.
-
DATEI_WERT
public static final PropertyValue DATEI_WERT
Deprecated.
-
VERWEIS_WERT
public static final PropertyValue VERWEIS_WERT
Deprecated.
-
LISTEN_WERT
public static final PropertyValue LISTEN_WERT
Deprecated.
-
ANONYMES_DATEN_OBJEKT
public static final PropertyValue ANONYMES_DATEN_OBJEKT
Deprecated.
-
-
Method Detail
-
values
public static PropertyValue[] values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PropertyValue c : PropertyValue.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PropertyValue valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
findByValueClass
public static Optional<PropertyValue> findByValueClass(Class<?> valueClass)
Deprecated.
-
-