Enum Class SubscribeMode

java.lang.Object
java.lang.Enum<SubscribeMode>
io.deephaven.sbe.standalone.gen.SubscribeMode
All Implemented Interfaces:
Serializable, Comparable<SubscribeMode>, java.lang.constant.Constable

public enum SubscribeMode extends Enum<SubscribeMode>
  • Enum Constant Details

    • UPDATES_ONLY

      public static final SubscribeMode UPDATES_ONLY
    • SNAPSHOT_WITH_UPDATES

      public static final SubscribeMode SNAPSHOT_WITH_UPDATES
    • SNAPSHOT_ONLY

      public static final SubscribeMode SNAPSHOT_ONLY
    • NULL_VAL

      public static final SubscribeMode NULL_VAL
      To be used to represent not present or null.
  • Method Details

    • values

      public static SubscribeMode[] 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 SubscribeMode 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
    • value

      public byte value()
    • get

      public static SubscribeMode get(byte value)