Uses of Class
org.openjena.atlas.lib.Tuple

Packages that use Tuple
org.openjena.atlas.lib   
 

Uses of Tuple in org.openjena.atlas.lib
 

Methods in org.openjena.atlas.lib that return Tuple
static
<X> Tuple<X>
Tuple.create(X... elements)
           
 Tuple<T> Tuple.map(ColumnMap colMap)
          Return a tuple with the column mapping applied
<T> Tuple<T>
ColumnMap.map(Tuple<T> src)
          Apply to an unmapped tuple to get a tuple with the column mapping applied
static Tuple<String> FileOps.splitDirBaseExt(String filename)
          Split a file name into path, basename and extension.
static Tuple<String> FileOps.splitDirFile(String filename)
          Split a file name into path and filename.
 Tuple<T> Tuple.unmap(ColumnMap colMap)
          Return a tuple with the column mapping reversed
<T> Tuple<T>
ColumnMap.unmap(Tuple<T> src)
          Apply to a mapped tuple to get a tuple with the column mapping reverse-applied
 

Methods in org.openjena.atlas.lib that return types with arguments of type Tuple
static
<T> Iterator<Tuple<T>>
Tuple.prefix(int prefixLength, Iterator<Tuple<T>> iter)
           
 

Methods in org.openjena.atlas.lib with parameters of type Tuple
<T> T
ColumnMap.fetchSlot(int idx, Tuple<T> tuple)
          Apply to an unmapped tuple to get the i'th slot after mapping : SPO->POS : 0'th slot is P from SPO
<T> Tuple<T>
ColumnMap.map(Tuple<T> src)
          Apply to an unmapped tuple to get a tuple with the column mapping applied
<T> T
ColumnMap.mapSlot(int idx, Tuple<T> tuple)
          Apply to a mapped tuple to get the i'th slot as it appears after mapping : SPO->POS : 0'th slot is S from POS
<T> Tuple<T>
ColumnMap.unmap(Tuple<T> src)
          Apply to a mapped tuple to get a tuple with the column mapping reverse-applied
 

Method parameters in org.openjena.atlas.lib with type arguments of type Tuple
static
<T> Iterator<Tuple<T>>
Tuple.prefix(int prefixLength, Iterator<Tuple<T>> iter)
           
static
<T> Iterator<T>
Tuple.project(int slot, Iterator<Tuple<T>> iter)
           
 



Licenced under the Apache License, Version 2.0