Interface RangeTree.Entry<C extends Comparable,V>

Type Parameters:
C - range endpoint type
V - value type
All Known Implementing Classes:
RangeEntry
Enclosing interface:
RangeTree<C extends Comparable,V>

public static interface RangeTree.Entry<C extends Comparable,V>
Entry in a range tree.
  • Method Summary

    Modifier and Type
    Method
    Description
    com.google.common.collect.Range<C>
    Return the range for this range tree entry.
    Return the value for this range tree entry.
  • Method Details

    • getRange

      com.google.common.collect.Range<C> getRange()
      Return the range for this range tree entry.
      Returns:
      the range for this range tree entry
    • getValue

      V getValue()
      Return the value for this range tree entry.
      Returns:
      the value for this range tree entry