Class BucketGroupId<T>

    • Constructor Summary

      Constructors 
      Constructor Description
      BucketGroupId​(java.lang.String type, T from, java.lang.String fromImage, T to, java.lang.String toImage)
      Constructs a new instance of this class.
      BucketGroupId​(java.lang.String type, T from, T to)
      Constructs a new instance of this class.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      T getFrom()
      Returns the inclusive-from of the value range.
      T getTo()
      Returns the exclusive-to of the value range.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • BucketGroupId

        public BucketGroupId​(java.lang.String type,
                             T from,
                             T to)
        Constructs a new instance of this class.
        Parameters:
        type - The type of this id's value.
        from - The inclusive-from of the range.
        to - The exclusive-to of the range.
      • BucketGroupId

        public BucketGroupId​(java.lang.String type,
                             T from,
                             java.lang.String fromImage,
                             T to,
                             java.lang.String toImage)
        Constructs a new instance of this class.
        Parameters:
        type - The type of this id's value.
        from - The inclusive-from of the range.
        fromImage - The String representation of the from argument.
        to - The exclusive-to of the range.
        toImage - The String representation of the to argument.
    • Method Detail

      • getFrom

        public T getFrom()
        Returns the inclusive-from of the value range.
        Returns:
        The from-value.
      • getTo

        public T getTo()
        Returns the exclusive-to of the value range.
        Returns:
        The to-value.