Enum CatDatafeedColumn

java.lang.Object
java.lang.Enum<CatDatafeedColumn>
co.elastic.clients.elasticsearch.cat.CatDatafeedColumn
All Implemented Interfaces:
JsonEnum, JsonpSerializable, java.io.Serializable, java.lang.Comparable<CatDatafeedColumn>, java.lang.constant.Constable

@JsonpDeserializable
public enum CatDatafeedColumn
extends java.lang.Enum<CatDatafeedColumn>
implements JsonEnum
See Also:
API specification
  • Nested Class Summary

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

    java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>

    Nested classes/interfaces inherited from interface co.elastic.clients.json.JsonEnum

    JsonEnum.Deserializer<T extends JsonEnum>
  • Enum Constant Summary

    Enum Constants
    Enum Constant Description
    Ae
    For started datafeeds only, contains messages relating to the selection of a node.
    Bc
    The number of buckets processed.
    Id
    A numerical character string that uniquely identifies the datafeed.
    Na
    For started datafeeds only, the network address of the node where the datafeed is started.
    Ne
    For started datafeeds only, the ephemeral ID of the node where the datafeed is started.
    Ni
    For started datafeeds only, the unique identifier of the node where the datafeed is started.
    Nn
    For started datafeeds only, the name of the node where the datafeed is started.
    S
    The status of the datafeed: starting, started, stopping, or stopped.
    Sba
    The average search time per bucket, in milliseconds.
    Sc
    The number of searches run by the datafeed.
    Seah
    The exponential average search time per hour, in milliseconds.
    St
    The total time the datafeed spent searching, in milliseconds.
  • Field Summary

    Fields
    Modifier and Type Field Description
    static JsonEnum.Deserializer<CatDatafeedColumn> _DESERIALIZER  
  • Method Summary

    Modifier and Type Method Description
    java.lang.String[] aliases()  
    java.lang.String jsonValue()  
    static CatDatafeedColumn valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static CatDatafeedColumn[] 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, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface co.elastic.clients.json.JsonEnum

    serialize
  • Enum Constant Details

    • Ae

      public static final CatDatafeedColumn Ae
      For started datafeeds only, contains messages relating to the selection of a node.
    • Bc

      public static final CatDatafeedColumn Bc
      The number of buckets processed.
    • Id

      public static final CatDatafeedColumn Id
      A numerical character string that uniquely identifies the datafeed.
    • Na

      public static final CatDatafeedColumn Na
      For started datafeeds only, the network address of the node where the datafeed is started.
    • Ne

      public static final CatDatafeedColumn Ne
      For started datafeeds only, the ephemeral ID of the node where the datafeed is started.
    • Ni

      public static final CatDatafeedColumn Ni
      For started datafeeds only, the unique identifier of the node where the datafeed is started.
    • Nn

      public static final CatDatafeedColumn Nn
      For started datafeeds only, the name of the node where the datafeed is started.
    • Sba

      public static final CatDatafeedColumn Sba
      The average search time per bucket, in milliseconds.
    • Sc

      public static final CatDatafeedColumn Sc
      The number of searches run by the datafeed.
    • Seah

      public static final CatDatafeedColumn Seah
      The exponential average search time per hour, in milliseconds.
    • St

      public static final CatDatafeedColumn St
      The total time the datafeed spent searching, in milliseconds.
    • S

      public static final CatDatafeedColumn S
      The status of the datafeed: starting, started, stopping, or stopped. If starting, the datafeed has been requested to start but has not yet started. If started, the datafeed is actively receiving data. If stopping, the datafeed has been requested to stop gracefully and is completing its final action. If stopped, the datafeed is stopped and will not receive data until it is re-started.
  • Field Details

  • Method Details

    • values

      public static CatDatafeedColumn[] 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 CatDatafeedColumn 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
    • jsonValue

      public java.lang.String jsonValue()
      Specified by:
      jsonValue in interface JsonEnum
    • aliases

      public java.lang.String[] aliases()
      Specified by:
      aliases in interface JsonEnum