Enum Class Timestamp.Type

java.lang.Object
java.lang.Enum<Timestamp.Type>
com.streambase.sb.Timestamp.Type
All Implemented Interfaces:
Serializable, Comparable<Timestamp.Type>, Constable
Enclosing class:
Timestamp

public static enum Timestamp.Type extends Enum<Timestamp.Type>
For use denoting timestamps objects between timestamp and interval types.
Since:
11.1
  • Enum Constant Details

    • TIMESTAMP

      public static final Timestamp.Type TIMESTAMP
      indicates that timestamp is a TIMESTAMP
    • INTERVAL

      public static final Timestamp.Type INTERVAL
      indicates that timestamp is an INTERVAL
  • Method Details

    • values

      public static Timestamp.Type[] 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 Timestamp.Type 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
    • fromBitValue

      public static Timestamp.Type fromBitValue(long type)
      Takes a long bit value, and converts it to a TimestampType.
      Parameters:
      type - the long bit value
      Returns:
      the TimestampType corresponding to the bit.
      Since:
      11.1
    • fromTimevalStructure

      public static Timestamp.Type fromTimevalStructure(long timeVal)
      Takes a full timestamp structure, and returns the TimestampType of it.
      Parameters:
      timeVal - the timestamp to type.
      Returns:
      the TimestampType of the inputted timestamp.
      Since:
      11.1
    • getLongType

      public long getLongType()
      Gets the long representation of the this TimestampType
      Returns:
      the long type.
      Since:
      11.1