Uses of Class
org.basex.index.IndexType

Packages that use IndexType
org.basex.core.cmd Database commands. 
org.basex.data Database structures. 
org.basex.index Database Index structures. 
org.basex.index.query   
org.basex.query.expr XQuery expressions. 
org.basex.util.ft Full-text specific utility classes. 
 

Uses of IndexType in org.basex.core.cmd
 

Methods in org.basex.core.cmd with parameters of type IndexType
protected static void ACreate.create(IndexType index, Data data, ACreate cmd)
          Builds the specified index.
protected static boolean ACreate.drop(IndexType index, Data data)
          Drops the specified index.
 

Uses of IndexType in org.basex.data
 

Methods in org.basex.data with parameters of type IndexType
abstract  void Data.closeIndex(IndexType type)
          Closes the specified index.
 void MemData.closeIndex(IndexType type)
           
 void DiskData.closeIndex(IndexType type)
           
 byte[] Data.info(IndexType type)
          Returns info on the specified index structure.
abstract  void Data.setIndex(IndexType type, Index index)
          Assigns the specified index.
 void MemData.setIndex(IndexType type, Index index)
           
 void DiskData.setIndex(IndexType type, Index index)
           
 

Uses of IndexType in org.basex.index
 

Methods in org.basex.index that return IndexType
static IndexType IndexType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IndexType[] IndexType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of IndexType in org.basex.index.query
 

Fields in org.basex.index.query declared as IndexType
 IndexType NumericRange.type
          Index type.
 IndexType StringRange.type
          Index type.
 

Methods in org.basex.index.query that return IndexType
 IndexType IndexToken.type()
          Returns the index type.
 IndexType StringToken.type()
           
 IndexType IndexEntries.type()
           
 IndexType NumericRange.type()
           
 IndexType StringRange.type()
           
 

Constructors in org.basex.index.query with parameters of type IndexType
IndexEntries(byte[] tok, boolean asc, IndexType it)
          Constructor for traversing entries.
IndexEntries(byte[] tok, IndexType it)
          Constructor for prefix search.
NumericRange(IndexType it, double mn, double mx)
          Constructor.
StringRange(IndexType it, byte[] mn, boolean in, byte[] mx, boolean ix)
          Constructor.
StringToken(IndexType it, byte[] tok)
          Constructor.
 

Uses of IndexType in org.basex.query.expr
 

Constructors in org.basex.query.expr with parameters of type IndexType
ValueAccess(InputInfo ii, Expr e, IndexType t, IndexContext ic)
          Constructor.
 

Uses of IndexType in org.basex.util.ft
 

Methods in org.basex.util.ft that return IndexType
 IndexType FTLexer.type()