Enum CatTrainedModelsColumn

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

@JsonpDeserializable
public enum CatTrainedModelsColumn
extends java.lang.Enum<CatTrainedModelsColumn>
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
    CreatedBy
    Information on the creator of the trained model.
    CreateTime
    The time when the trained model was created.
    DataFrameAnalyticsId
    Identifier for the data frame analytics job that created the model.
    Description
    The description of the trained model.
    HeapSize
    The estimated heap size to keep the trained model in memory.
    Id
    Idetifier for the trained model.
    IngestCount
    The total number of documents that are processed by the model.
    IngestCurrent
    The total number of document that are currently being handled by the trained model.
    IngestFailed
    The total number of failed ingest attempts with the trained model.
    IngestPipelines
    The total number of ingest pipelines that are referencing the trained model.
    IngestTime
    The total time that is spent processing documents with the trained model.
    License
    The license level of the trained model.
    Operations
    The estimated number of operations to use the trained model.
    Version
    The Elasticsearch version number in which the trained model was created.
  • Field Summary

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

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

    • CreateTime

      public static final CatTrainedModelsColumn CreateTime
      The time when the trained model was created.
    • CreatedBy

      public static final CatTrainedModelsColumn CreatedBy
      Information on the creator of the trained model.
    • DataFrameAnalyticsId

      public static final CatTrainedModelsColumn DataFrameAnalyticsId
      Identifier for the data frame analytics job that created the model. Only displayed if it is still available.
    • Description

      public static final CatTrainedModelsColumn Description
      The description of the trained model.
    • HeapSize

      public static final CatTrainedModelsColumn HeapSize
      The estimated heap size to keep the trained model in memory.
    • Id

      public static final CatTrainedModelsColumn Id
      Idetifier for the trained model.
    • IngestCount

      public static final CatTrainedModelsColumn IngestCount
      The total number of documents that are processed by the model.
    • IngestCurrent

      public static final CatTrainedModelsColumn IngestCurrent
      The total number of document that are currently being handled by the trained model.
    • IngestFailed

      public static final CatTrainedModelsColumn IngestFailed
      The total number of failed ingest attempts with the trained model.
    • IngestPipelines

      public static final CatTrainedModelsColumn IngestPipelines
      The total number of ingest pipelines that are referencing the trained model.
    • IngestTime

      public static final CatTrainedModelsColumn IngestTime
      The total time that is spent processing documents with the trained model.
    • License

      public static final CatTrainedModelsColumn License
      The license level of the trained model.
    • Operations

      public static final CatTrainedModelsColumn Operations
      The estimated number of operations to use the trained model. This number helps measuring the computational complexity of the model.
    • Version

      public static final CatTrainedModelsColumn Version
      The Elasticsearch version number in which the trained model was created.
  • Field Details

  • Method Details

    • values

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