Record Class SnowflakeIdStat

java.lang.Object
java.lang.Record
me.ahoo.cosid.stat.generator.SnowflakeIdStat
All Implemented Interfaces:
IdGeneratorStat, Stat

public record SnowflakeIdStat(String kind, long epoch, int timestampBit, int machineBit, int sequenceBit, boolean isSafeJavascript, int machineId, long lastTimestamp, Stat converter) extends Record implements IdGeneratorStat
  • Constructor Summary

    Constructors
    Constructor
    Description
    SnowflakeIdStat(String kind, long epoch, int timestampBit, int machineBit, int sequenceBit, boolean isSafeJavascript, int machineId, long lastTimestamp, Stat converter)
    Creates an instance of a SnowflakeIdStat record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the value of the converter record component.
    long
    Returns the value of the epoch record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    boolean
    Returns the value of the isSafeJavascript record component.
    Returns the value of the kind record component.
    long
    Returns the value of the lastTimestamp record component.
    int
    Returns the value of the machineBit record component.
    int
    Returns the value of the machineId record component.
    int
    Returns the value of the sequenceBit record component.
    int
    Returns the value of the timestampBit record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface me.ahoo.cosid.stat.generator.IdGeneratorStat

    actual
  • Constructor Details

    • SnowflakeIdStat

      public SnowflakeIdStat(String kind, long epoch, int timestampBit, int machineBit, int sequenceBit, boolean isSafeJavascript, int machineId, long lastTimestamp, Stat converter)
      Creates an instance of a SnowflakeIdStat record class.
      Parameters:
      kind - the value for the kind record component
      epoch - the value for the epoch record component
      timestampBit - the value for the timestampBit record component
      machineBit - the value for the machineBit record component
      sequenceBit - the value for the sequenceBit record component
      isSafeJavascript - the value for the isSafeJavascript record component
      machineId - the value for the machineId record component
      lastTimestamp - the value for the lastTimestamp record component
      converter - the value for the converter record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • kind

      public String kind()
      Returns the value of the kind record component.
      Specified by:
      kind in interface Stat
      Returns:
      the value of the kind record component
    • epoch

      public long epoch()
      Returns the value of the epoch record component.
      Returns:
      the value of the epoch record component
    • timestampBit

      public int timestampBit()
      Returns the value of the timestampBit record component.
      Returns:
      the value of the timestampBit record component
    • machineBit

      public int machineBit()
      Returns the value of the machineBit record component.
      Returns:
      the value of the machineBit record component
    • sequenceBit

      public int sequenceBit()
      Returns the value of the sequenceBit record component.
      Returns:
      the value of the sequenceBit record component
    • isSafeJavascript

      public boolean isSafeJavascript()
      Returns the value of the isSafeJavascript record component.
      Returns:
      the value of the isSafeJavascript record component
    • machineId

      public int machineId()
      Returns the value of the machineId record component.
      Returns:
      the value of the machineId record component
    • lastTimestamp

      public long lastTimestamp()
      Returns the value of the lastTimestamp record component.
      Returns:
      the value of the lastTimestamp record component
    • converter

      public Stat converter()
      Returns the value of the converter record component.
      Specified by:
      converter in interface IdGeneratorStat
      Returns:
      the value of the converter record component