org.basex.query.xpath.expr
Class FTContains
java.lang.Object
org.basex.query.xpath.expr.Expr
org.basex.query.xpath.expr.DualExpr
org.basex.query.xpath.expr.Comparison
org.basex.query.xpath.expr.FTContains
public final class FTContains
- extends Comparison
FTContains Expression; used for fulltext operations.
- Author:
- Workgroup DBIS, University of Konstanz 2005-07, ISC License, Christian Gruen
| Fields inherited from class org.basex.query.xpath.expr.Comparison |
type |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
FTContains
public FTContains(Expr e1,
Expr e2,
FTOption opt)
- Constructor.
- Parameters:
e1 - first expressione2 - second expression to compare with firstopt - fulltext options
compile
public Expr compile(XPContext ctx)
throws EvalException
- Description copied from class:
Expr
- Tries to optimize the Expression.
- Specified by:
compile in class Expr
- Parameters:
ctx - expression context
- Returns:
- optimized Expression
- Throws:
EvalException - evaluation exception
eval
public Bool eval(XPContext ctx)
throws EvalException
- Description copied from class:
Expr
- Evaluates the expression with the specified context set. Additionally
provides a context
- Overrides:
eval in class Comparison
- Parameters:
ctx - query context
- Returns:
- resulting XPathValue
- Throws:
EvalException - evaluation exception
indexEquivalent
public Expr indexEquivalent(XPContext ctx,
Step curr)
throws EvalException
- Description copied from class:
Expr
- For predicate optimization.
If possible return an expression yielding the same results using the index.
This may not do any changes to the current expression.
- Overrides:
indexEquivalent in class Expr
- Parameters:
ctx - rootcurr - the LocationStep this Expression is a predicate of
- Returns:
- Equivalent index-expression or null
- Throws:
EvalException - evaluation exception
indexSizes
public int indexSizes(XPContext ctx,
Step curr,
int min)
- Description copied from class:
Expr
- For predicate optimization.
If possible return the number of entries an index returns.
This may not do any changes to the current expression.
- Overrides:
indexSizes in class Expr
- Parameters:
ctx - rootcurr - the LocationStep this Expression is a predicate ofmin - current minimum size
- Returns:
- Equivalent index-expression or null