Enum KindOfUpdateTelegramm

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

public enum KindOfUpdateTelegramm
extends java.lang.Enum<KindOfUpdateTelegramm>
Enthält alle Typen von Telegrammen, die von der Konfiguration verschickt werden um anzuzeigen, dass sich Werte von Objekten geändert haben.

Anhand des Typs kann erkannt werden, wie der Byte-Strom zu interpretieren ist, der im Datensatz enthalten ist.

  • 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
    CREATED
    Es wurde ein neues dynamisches Objekt erzeugt
    UPDATE_NAME
    Der Name eines Objekts hat sich geändert.
    UPDATE_NOT_VALID_SINCE
    Der Zeitpunkt, an dem das Objekt ungültig wurde, hat sich geändert
  • Method Summary

    Modifier and Type Method Description
    byte getCode()  
    static KindOfUpdateTelegramm getInstance​(byte code)  
    java.lang.String getName()  
    java.lang.String toString()  
    static KindOfUpdateTelegramm valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static KindOfUpdateTelegramm[] 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

    • UPDATE_NAME

      public static final KindOfUpdateTelegramm UPDATE_NAME
      Der Name eines Objekts hat sich geändert.
    • UPDATE_NOT_VALID_SINCE

      public static final KindOfUpdateTelegramm UPDATE_NOT_VALID_SINCE
      Der Zeitpunkt, an dem das Objekt ungültig wurde, hat sich geändert
    • CREATED

      public static final KindOfUpdateTelegramm CREATED
      Es wurde ein neues dynamisches Objekt erzeugt
  • Method Details

    • values

      public static KindOfUpdateTelegramm[] 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 KindOfUpdateTelegramm 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 KindOfUpdateTelegramm 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<KindOfUpdateTelegramm>