Enum FeldX

  • All Implemented Interfaces:
    Serializable, Comparable<FeldX>

    @Deprecated
    public enum FeldX
    extends Enum<FeldX>
    Deprecated.
    Enums mit Annotationen werden ab v6 nicht mehr unterstuetzt
    Diese Enum-Klasse ist nur ein Platzhalter fuer eine unbekannte oder noch nicht unterstuetzte Satzart.
    Since:
    0.6 (07.04.2011)
    Author:
    oliver (ob@aosd.de)
    • Enum Constant Detail

      • INTRO1

        public static final FeldX INTRO1
        Deprecated.
        Feld 1 - 7 sind fuer jeden (Teil-)Datensatz identisch.
      • UNBEKANNT

        public static final FeldX UNBEKANNT
        Deprecated.
        Nur ein Platzhalter fuer den gesamten unbekannten Rest eines Teildatensatzes.
      • SATZNUMMER

        public static final FeldX SATZNUMMER
        Deprecated.
        Satznummer.
    • Method Detail

      • values

        public static FeldX[] 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 (FeldX c : FeldX.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static FeldX 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