Enum Class MetaAttribute

java.lang.Object
java.lang.Enum<MetaAttribute>
io.camunda.zeebe.engine.processing.message.command.MetaAttribute
All Implemented Interfaces:
Serializable, Comparable<MetaAttribute>, Constable

public enum MetaAttribute extends Enum<MetaAttribute>
Meta attribute enum for selecting a particular meta attribute value.
  • Enum Constant Details

    • EPOCH

      public static final MetaAttribute EPOCH
      The epoch or start of time. Default is 'UNIX' which is midnight 1st January 1970 UTC.
    • TIME_UNIT

      public static final MetaAttribute TIME_UNIT
      Time unit applied to the epoch. Can be second, millisecond, microsecond, or nanosecond.
    • SEMANTIC_TYPE

      public static final MetaAttribute SEMANTIC_TYPE
      The type relationship to a FIX tag value encoded type. For reference only.
    • PRESENCE

      public static final MetaAttribute PRESENCE
      Field presence indication. Can be optional, required, or constant.
  • Method Details

    • values

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