Enum Class DslStoreFormat

java.lang.Object
java.lang.Enum<DslStoreFormat>
org.apache.kafka.streams.DslStoreFormat
All Implemented Interfaces:
Serializable, Comparable<DslStoreFormat>, Constable

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

    • PLAIN

      public static final DslStoreFormat PLAIN
      The non-timestamped state stores
    • TIMESTAMPED

      public static final DslStoreFormat TIMESTAMPED
      The timestamped state stores
    • HEADERS

      public static final DslStoreFormat HEADERS
      The headers-aware state stores
  • Field Details

    • name

      public final String name
      String representation of the DSL store format.
  • Method Details

    • values

      public static DslStoreFormat[] 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 DslStoreFormat 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
    • of

      public static DslStoreFormat of(String name)
      Case-insensitive DSL store format lookup by string name.