Uses of Class
it.unipi.di.util.Range

Packages that use Range
it.unipi.di.graph   
it.unipi.di.textdb   
it.unipi.di.util   
 

Uses of Range in it.unipi.di.graph
 

Fields in it.unipi.di.graph with type parameters of type Range
protected  SortedMap<Range,TextDB> GraphLabelerConfig.vertices
           
 

Methods in it.unipi.di.graph that return Range
 Range GraphLabelerConfig.getRangeFor(int vertex)
          Returns the range containing the input vertex, as defined in this configuration.
 Range GraphLabelerConfig.getSpanningRange()
          Returns the spanning range containing all the vertex ranges defined in this configuration.
 

Methods in it.unipi.di.graph that return types with arguments of type Range
 SortedMap<Range,TextDB> GraphLabelerConfig.getRangeDBMap(Range r)
          Given an input range, this method collect all the Range/TextDB pairs for all the subranges defined in this configuration and contained in the input one.
 

Methods in it.unipi.di.graph with parameters of type Range
 SortedMap<Range,TextDB> GraphLabelerConfig.getRangeDBMap(Range r)
          Given an input range, this method collect all the Range/TextDB pairs for all the subranges defined in this configuration and contained in the input one.
 TextDB[] GraphLabelerConfig.getVertexDBs(Range r)
          Returns the TextDBs covering the passed range.
 void GraphLabelerConfig.setVertexDB(Range r, TextDB db)
          Sets a TextDB storing the labels for the vertices in the given range.
 

Uses of Range in it.unipi.di.textdb
 

Methods in it.unipi.di.textdb that return Range
 Range SearchableDB.prefix(String p)
          Returns the range [i, j) of consecutive records in the TextDB that are prefixed by string p.
 Range FrontCoding.prefix(String p)
          Returns the range [i, j) of positions identifying the records in the (ordered) TextDB which are prefixed by p.
 

Uses of Range in it.unipi.di.util
 

Methods in it.unipi.di.util that return Range
static Range Range.parseRange(String str)
           
 

Methods in it.unipi.di.util with parameters of type Range
 int Range.compareTo(Range r)
          Returns -1 if this range is before range r, +1 if it is after range r, or 0 if they are overlapping.