Uses of Class
org.basex.query.xpath.expr.FTOption

Packages that use FTOption
org.basex.data Contains BaseX data types, including the internal table representation in the Data class. 
org.basex.index Contains database index implementations. 
org.basex.query.xpath Includes an implementation of XPath 1.0. 
org.basex.query.xpath.expr Contains XPath 1.0 expressions. 
org.basex.query.xpath.internal Contains internally used XPath expressions. 
 

Uses of FTOption in org.basex.data
 

Methods in org.basex.data with parameters of type FTOption
 int[][] MemData.ftIDs(byte[] word, FTOption ftOption)
           
 int[][] DiskData.ftIDs(byte[] word, FTOption ftO)
           
abstract  int[][] Data.ftIDs(byte[] fulltext, FTOption ftOption)
          Returns the indexed id references for the specified fulltext token.
 

Uses of FTOption in org.basex.index
 

Methods in org.basex.index with parameters of type FTOption
 int[][] WordsCTA.idPos(byte[] tok, FTOption ftO)
          Returns all ids from trie stored for tok, with repsect to ftO.
 int[][] Words.idPos(byte[] tok, FTOption ftO)
          Returns all ids from trie stored for token with respect to ftO.
 int[][] Values.idPos(byte[] tok, FTOption ftO)
          Returns all ids from index stored for tok with respect to ftO.
 int[][] MemValues.idPos(byte[] tok, FTOption ftO)
          Returns all ids from index stored for tok with respect to ftO.
 int[][] Index.idPos(byte[] tok, FTOption ftOption)
          Returns the decompressed ids for the specified token.
 int[] WordsCTA.ids(byte[] tok, FTOption ftO)
          Returns all ids from trie stored for tok, with repsect to ftO.
 int[] Words.ids(byte[] tok, FTOption ftO)
          Returns all ids from trie stored for token with respect to ftO.
 int[] Values.ids(byte[] tok, FTOption ftO)
          Returns all ids from index stored for tok with respect to ftO.
 int[] MemValues.ids(byte[] tok, FTOption ftO)
          Returns all ids from index stored for tok with respect to ftO.
 int[] Index.ids(byte[] tok, FTOption ftOption)
          Returns the node ids for the specified token.
 

Uses of FTOption in org.basex.query.xpath
 

Fields in org.basex.query.xpath declared as FTOption
 FTOption XPContext.ftoption
          Leaf flag.
 

Uses of FTOption in org.basex.query.xpath.expr
 

Constructors in org.basex.query.xpath.expr with parameters of type FTOption
FTContains(Expr e1, Expr e2, FTOption opt)
          Constructor.
 

Uses of FTOption in org.basex.query.xpath.internal
 

Methods in org.basex.query.xpath.internal that return FTOption
 FTOption FTIndex.getFTOption()
          Get FTOptions for index access.
 

Constructors in org.basex.query.xpath.internal with parameters of type FTOption
FTIndex(byte[] tok, FTOption opt, boolean sim, boolean sing)
          Constructor.