Enum Class KindOfVersion

java.lang.Object
java.lang.Enum<KindOfVersion>
de.bsvrz.dav.daf.main.impl.config.request.KindOfVersion
All Implemented Interfaces:
Serializable, Comparable<KindOfVersion>, Constable

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

    • 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 Details

    • values

      public static KindOfVersion[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static KindOfVersion valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getInstance

      public static KindOfVersion getInstance(byte code)
    • getCode

      public byte getCode()
    • getName

      public String getName()
    • toString

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