Enum Rounding.DateTimeUnit

java.lang.Object
java.lang.Enum<Rounding.DateTimeUnit>
org.elasticsearch.common.Rounding.DateTimeUnit
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Rounding.DateTimeUnit>, java.lang.constant.Constable
Enclosing class:
Rounding

public static enum Rounding.DateTimeUnit
extends java.lang.Enum<Rounding.DateTimeUnit>
  • 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

  • Field Summary

    Fields
    Modifier and Type Field Description
    protected long ratio
    ratio to milliseconds if isMillisBased == true or to month otherwise
  • Method Summary

    Modifier and Type Method Description
    java.time.temporal.TemporalField getField()  
    byte getId()  
    static Rounding.DateTimeUnit resolve​(byte id)  
    static Rounding.DateTimeUnit resolve​(java.lang.String name)  
    java.lang.String shortName()  
    static Rounding.DateTimeUnit valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static Rounding.DateTimeUnit[] 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
  • Enum Constant Details

  • Field Details

    • ratio

      protected final long ratio
      ratio to milliseconds if isMillisBased == true or to month otherwise
  • Method Details

    • values

      public static Rounding.DateTimeUnit[] 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 Rounding.DateTimeUnit 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
    • getId

      public byte getId()
    • getField

      public java.time.temporal.TemporalField getField()
    • resolve

      public static Rounding.DateTimeUnit resolve​(java.lang.String name)
    • shortName

      public java.lang.String shortName()
    • resolve

      public static Rounding.DateTimeUnit resolve​(byte id)