Enum HoltWintersModel.SeasonalityType

java.lang.Object
java.lang.Enum<HoltWintersModel.SeasonalityType>
org.elasticsearch.search.aggregations.pipeline.HoltWintersModel.SeasonalityType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<HoltWintersModel.SeasonalityType>, java.lang.constant.Constable
Enclosing class:
HoltWintersModel

public static enum HoltWintersModel.SeasonalityType
extends java.lang.Enum<HoltWintersModel.SeasonalityType>
  • Nested Class Summary

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

    java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
  • Enum Constant Summary

    Enum Constants 
    Enum Constant Description
    ADDITIVE  
    MULTIPLICATIVE  
  • Method Summary

    Modifier and Type Method Description
    java.lang.String getName()
    Return the english-formatted name of the SeasonalityType
    static HoltWintersModel.SeasonalityType parse​(java.lang.String text)
    Parse a string SeasonalityType into the byte enum
    static HoltWintersModel.SeasonalityType readFrom​(StreamInput in)
    Deserialize the SeasonalityType from the input stream
    static HoltWintersModel.SeasonalityType valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static HoltWintersModel.SeasonalityType[] values()
    Returns an array containing the constants of this enum type, in the order they are declared.
    void writeTo​(StreamOutput out)
    Serialize the SeasonalityType to the output stream

    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
  • Enum Constant Details

  • Method Details

    • values

      public static HoltWintersModel.SeasonalityType[] 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 HoltWintersModel.SeasonalityType 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
    • parse

      @Nullable public static HoltWintersModel.SeasonalityType parse​(java.lang.String text)
      Parse a string SeasonalityType into the byte enum
      Parameters:
      text - SeasonalityType in string format (e.g. "add")
      Returns:
      SeasonalityType enum
    • writeTo

      public void writeTo​(StreamOutput out) throws java.io.IOException
      Serialize the SeasonalityType to the output stream
      Throws:
      java.io.IOException
    • readFrom

      public static HoltWintersModel.SeasonalityType readFrom​(StreamInput in) throws java.io.IOException
      Deserialize the SeasonalityType from the input stream
      Parameters:
      in - the input stream
      Returns:
      SeasonalityType Enum
      Throws:
      java.io.IOException
    • getName

      public java.lang.String getName()
      Return the english-formatted name of the SeasonalityType
      Returns:
      English representation of SeasonalityType