Enum KindOfVersion

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<KindOfVersion>

    public enum KindOfVersion
    extends java.lang.Enum<KindOfVersion>
    Stellt alle Möglichkeiten dar, in der ein Objekt in einer Version gültig sein kann.
    • Enum Constant Detail

      • IN_NEXT_VERSION

        public static final KindOfVersion IN_NEXT_VERSION
        In der nächsten Version
      • IN_VERSION

        public static final KindOfVersion IN_VERSION
        In der derzeit benutzten Version
      • IN_ALL_VERSIONS

        public static final KindOfVersion IN_ALL_VERSIONS
        In allen Versionen
      • IN_ANY_VERSIONS

        public static final KindOfVersion IN_ANY_VERSIONS
        In jeder Version
    • Method Detail

      • values

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

        public static KindOfVersion valueOf​(java.lang.String name)
        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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getInstance

        public static KindOfVersion getInstance​(byte code)
      • getCode

        public byte getCode()
      • getName

        public java.lang.String getName()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<KindOfVersion>