Enum KindOfVersion

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

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

    Nested classes/interfaces inherited from class java.lang.Enum

    java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant Description
    IN_ALL_VERSIONS
    In allen Versionen
    IN_ANY_VERSIONS
    In jeder Version
    IN_NEXT_VERSION
    In der nächsten Version
    IN_VERSION
    In der derzeit benutzten Version
  • Method Summary

    Modifier and Type Method Description
    byte getCode()  
    static KindOfVersion getInstance​(byte code)  
    java.lang.String getName()  
    java.lang.String toString()  
    static KindOfVersion valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static KindOfVersion[] values()
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • 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 type, in the order they are declared.
      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>