Enum PropertyValue

    • 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 name
        NullPointerException - if the argument is null