Uses of Interface
org.apache.expreval.expr.node.GenericValue

Packages that use GenericValue
org.apache.expreval.expr   
org.apache.expreval.expr.betweenstmt   
org.apache.expreval.expr.calculation   
org.apache.expreval.expr.casestmt   
org.apache.expreval.expr.compare   
org.apache.expreval.expr.function   
org.apache.expreval.expr.ifthenstmt   
org.apache.expreval.expr.instmt   
org.apache.expreval.expr.literal   
org.apache.expreval.expr.node   
org.apache.expreval.expr.nullcomp   
org.apache.expreval.expr.stringpattern   
org.apache.expreval.expr.var   
org.apache.hadoop.hbase.hbql.executor   
org.apache.hadoop.hbase.hbql.mapping   
org.apache.hadoop.hbase.hbql.parser   
org.apache.hadoop.hbase.hbql.statement   
org.apache.hadoop.hbase.hbql.statement.args   
org.apache.hadoop.hbase.hbql.statement.select   
 

Uses of GenericValue in org.apache.expreval.expr
 

Classes in org.apache.expreval.expr that implement GenericValue
 class BooleanNot
           
 class DelegateStmt<T extends GenericExpression>
           
 class GenericExpression
           
 class NotValue<T extends GenericExpression>
           
 

Methods in org.apache.expreval.expr that return GenericValue
 GenericValue GenericExpression.getExprArg(int i)
           
protected  GenericValue MultipleExpressionContext.getGenericValue(int i)
           
 GenericValue GenericExpression.getOptimizedValue()
           
 GenericValue BooleanNot.getOptimizedValue()
           
 GenericValue TypeSignature.newLiteral(Object val)
           
 

Methods in org.apache.expreval.expr that return types with arguments of type GenericValue
 Class<? extends GenericValue> TypeSignature.getArg(int i)
           
 List<Class<? extends GenericValue>> TypeSignature.getArgTypeList()
           
protected  List<GenericValue> MultipleExpressionContext.getExpressionList()
           
static Class<? extends GenericValue> TypeSupport.getGenericExprType(GenericValue val)
           
protected  Class<? extends GenericValue> GenericExpression.getGenericValueClass(Class<? extends GenericValue> clazz)
           
 List<GenericValue> GenericExpression.getGenericValueList()
           
 Class<? extends GenericValue> TypeSignature.getReturnType()
           
protected  List<GenericValue> GenericExpression.getSubArgs(int i)
           
protected  Class<? extends GenericValue> GenericExpression.validateNumericTypes()
           
 Class<? extends GenericValue> GenericExpression.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> BooleanNot.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Methods in org.apache.expreval.expr with parameters of type GenericValue
 void MultipleExpressionContext.addExpression(GenericValue genericValue)
           
static Class<? extends GenericValue> TypeSupport.getGenericExprType(GenericValue val)
           
static ExpressionTree ExpressionTree.newExpressionTree(Mapping mapping, GenericValue booleanValue)
           
 void GenericExpression.setArg(int i, GenericValue val)
           
protected  void MultipleExpressionContext.setGenericValue(int i, GenericValue treeRoot)
           
 Class<? extends GenericValue> GenericExpression.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> BooleanNot.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Method parameters in org.apache.expreval.expr with type arguments of type GenericValue
protected  Class<? extends GenericValue> GenericExpression.getGenericValueClass(Class<? extends GenericValue> clazz)
           
 void GenericExpression.validateParentClass(Class<? extends GenericValue> parentClass, Class<? extends GenericValue>... childrenClasses)
           
 

Constructors in org.apache.expreval.expr with parameters of type GenericValue
BooleanNot(GenericValue arg0)
           
DelegateStmt(ExpressionType type, GenericValue... args)
           
DelegateStmt(ExpressionType type, GenericValue arg, List<GenericValue> argList)
           
ExpressionProperty(ArgumentListTypeSignature argumentListTypeSignature, GenericValue expr)
           
ExpressionProperty(PropertyType propertyType, GenericValue... exprs)
           
GenericExpression(ExpressionType type, GenericValue... exprs)
           
GenericExpression(ExpressionType type, GenericValue expr, List<GenericValue> genericValueList)
           
MultipleExpressionContext(TypeSignature typeSignature, GenericValue... vals)
           
NotValue(ExpressionType type, boolean not, GenericValue... args)
           
NotValue(ExpressionType type, boolean not, GenericValue arg, List<GenericValue> argList)
           
 

Constructor parameters in org.apache.expreval.expr with type arguments of type GenericValue
DelegateStmt(ExpressionType type, GenericValue arg, List<GenericValue> argList)
           
DelegateStmt(ExpressionType type, List<GenericValue> args)
           
FunctionTypeSignature(Class<? extends GenericValue> returnType, Class<? extends GenericValue>... typeSig)
           
GenericExpression(ExpressionType type, GenericValue expr, List<GenericValue> genericValueList)
           
GenericExpression(ExpressionType type, List<GenericValue> genericValueList)
           
NotValue(ExpressionType type, boolean not, GenericValue arg, List<GenericValue> argList)
           
NotValue(ExpressionType type, boolean not, List<GenericValue> args)
           
TypeSignature(Class<? extends GenericValue> returnType, Class<? extends GenericValue>... argsTypeSignature)
           
 

Uses of GenericValue in org.apache.expreval.expr.betweenstmt
 

Classes in org.apache.expreval.expr.betweenstmt that implement GenericValue
 class ByteBetweenStmt
           
 class DateBetweenStmt
           
 class DelegateBetweenStmt
           
 class GenericBetweenStmt
           
 class NumberBetweenStmt
           
 class StringBetweenStmt
           
 

Methods in org.apache.expreval.expr.betweenstmt that return GenericValue
 GenericValue DelegateBetweenStmt.getOptimizedValue()
           
 

Methods in org.apache.expreval.expr.betweenstmt that return types with arguments of type GenericValue
 Class<? extends GenericValue> DelegateBetweenStmt.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Methods in org.apache.expreval.expr.betweenstmt with parameters of type GenericValue
 Class<? extends GenericValue> DelegateBetweenStmt.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Constructors in org.apache.expreval.expr.betweenstmt with parameters of type GenericValue
ByteBetweenStmt(GenericValue expr, boolean not, GenericValue lower, GenericValue upper)
           
DateBetweenStmt(GenericValue expr, boolean not, GenericValue lower, GenericValue upper)
           
DelegateBetweenStmt(GenericValue arg0, boolean not, GenericValue arg1, GenericValue arg2)
           
GenericBetweenStmt(ExpressionType type, boolean not, GenericValue arg0, GenericValue arg1, GenericValue arg2)
           
NumberBetweenStmt(GenericValue arg0, boolean not, GenericValue arg1, GenericValue arg2)
           
StringBetweenStmt(GenericValue arg0, boolean not, GenericValue arg1, GenericValue arg2)
           
 

Uses of GenericValue in org.apache.expreval.expr.calculation
 

Classes in org.apache.expreval.expr.calculation that implement GenericValue
 class DateCalculation
           
 class DelegateCalculation
           
 class GenericCalculation
           
 class NumericCalculation
           
 class StringCalculation
           
 

Methods in org.apache.expreval.expr.calculation that return GenericValue
 GenericValue DelegateCalculation.getOptimizedValue()
           
 

Methods in org.apache.expreval.expr.calculation that return types with arguments of type GenericValue
 Class<? extends GenericValue> NumericCalculation.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> DelegateCalculation.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Methods in org.apache.expreval.expr.calculation with parameters of type GenericValue
 Class<? extends GenericValue> NumericCalculation.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> DelegateCalculation.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Constructors in org.apache.expreval.expr.calculation with parameters of type GenericValue
DateCalculation(GenericValue arg0, Operator operator, GenericValue arg1)
           
DelegateCalculation(GenericValue arg0, Operator operator, GenericValue arg1)
           
GenericCalculation(ExpressionType type, GenericValue arg0, Operator operator, GenericValue arg1)
           
NumericCalculation(GenericValue arg0, Operator operator, GenericValue arg1)
           
StringCalculation(GenericValue arg0, Operator operator, GenericValue arg1)
           
 

Uses of GenericValue in org.apache.expreval.expr.casestmt
 

Classes in org.apache.expreval.expr.casestmt that implement GenericValue
 class BooleanCase
           
 class BooleanCaseElse
           
 class BooleanCaseWhen
           
 class DateCase
           
 class DateCaseElse
           
 class DateCaseWhen
           
 class DelegateCase
           
 class DelegateCaseElse
           
 class DelegateCaseWhen
           
 class GenericCase
           
 class GenericCaseElse
           
 class GenericCaseWhen
           
 class NumberCase
           
 class NumberCaseElse
           
 class NumberCaseWhen
           
 class StringCase
           
 class StringCaseElse
           
 class StringCaseWhen
           
 

Methods in org.apache.expreval.expr.casestmt that return GenericValue
 GenericValue DelegateCaseWhen.getOptimizedValue()
           
 GenericValue DelegateCaseElse.getOptimizedValue()
           
 GenericValue DelegateCase.getOptimizedValue()
           
 

Methods in org.apache.expreval.expr.casestmt that return types with arguments of type GenericValue
 Class<? extends GenericValue> DelegateCaseWhen.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> DelegateCaseElse.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> DelegateCase.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Methods in org.apache.expreval.expr.casestmt with parameters of type GenericValue
 void DelegateCase.addElse(GenericValue value)
           
 void DelegateCase.addWhen(GenericValue pred, GenericValue value)
           
 Class<? extends GenericValue> DelegateCaseWhen.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> DelegateCaseElse.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> DelegateCase.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Constructors in org.apache.expreval.expr.casestmt with parameters of type GenericValue
BooleanCaseElse(GenericValue arg0)
           
BooleanCaseWhen(GenericValue arg0, GenericValue arg1)
           
DateCaseElse(GenericValue arg0)
           
DateCaseWhen(GenericValue arg0, GenericValue arg1)
           
DelegateCaseElse(GenericValue arg0)
           
DelegateCaseWhen(GenericValue arg0, GenericValue arg1)
           
GenericCaseElse(ExpressionType type, GenericValue arg0)
           
GenericCaseWhen(ExpressionType type, GenericValue arg0, GenericValue arg1)
           
NumberCaseElse(GenericValue arg0)
           
NumberCaseWhen(GenericValue arg0, GenericValue arg1)
           
StringCaseElse(GenericValue arg0)
           
StringCaseWhen(GenericValue arg0, GenericValue arg1)
           
 

Uses of GenericValue in org.apache.expreval.expr.compare
 

Classes in org.apache.expreval.expr.compare that implement GenericValue
 class BooleanCompare
           
 class ByteCompare
           
 class DateCompare
           
 class DelegateCompare
           
 class GenericCompare
           
 class NumberCompare
           
 class StringCompare
           
 

Methods in org.apache.expreval.expr.compare that return GenericValue
 GenericValue GenericCompare.getOptimizedValue()
           
 GenericValue DelegateCompare.getOptimizedValue()
           
 

Methods in org.apache.expreval.expr.compare that return types with arguments of type GenericValue
protected  Class<? extends GenericValue> GenericCompare.validateType(Class<? extends GenericValue> clazz)
           
 Class<? extends GenericValue> StringCompare.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> NumberCompare.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> DelegateCompare.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> DateCompare.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> ByteCompare.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> BooleanCompare.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Methods in org.apache.expreval.expr.compare with parameters of type GenericValue
 Class<? extends GenericValue> StringCompare.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> NumberCompare.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> DelegateCompare.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> DateCompare.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> ByteCompare.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> BooleanCompare.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Method parameters in org.apache.expreval.expr.compare with type arguments of type GenericValue
protected  Class<? extends GenericValue> GenericCompare.validateType(Class<? extends GenericValue> clazz)
           
 

Constructors in org.apache.expreval.expr.compare with parameters of type GenericValue
BooleanCompare(GenericValue arg0, Operator operator, GenericValue arg1)
           
ByteCompare(GenericValue arg0, Operator operator, GenericValue arg1)
           
DateCompare(GenericValue arg0, Operator operator, GenericValue arg1)
           
DelegateCompare(GenericValue arg0, Operator operator, GenericValue arg1)
           
GenericCompare(GenericValue arg0, Operator operator, GenericValue arg1)
           
NumberCompare(GenericValue arg0, Operator operator, GenericValue arg1)
           
StringCompare(GenericValue arg0, Operator operator, GenericValue arg1)
           
 

Uses of GenericValue in org.apache.expreval.expr.function
 

Classes in org.apache.expreval.expr.function that implement GenericValue
 class BooleanFunction
           
 class DateFunction
           
 class DelegateFunction
           
 class GenericFunction
           
 class NumberFunction
           
 class StringFunction
           
 

Methods in org.apache.expreval.expr.function that return GenericValue
 GenericValue GenericFunction.getOptimizedValue()
           
 GenericValue DelegateFunction.getOptimizedValue()
           
 

Methods in org.apache.expreval.expr.function that return types with arguments of type GenericValue
 Class<? extends GenericValue> GenericFunction.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> DelegateFunction.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> BooleanFunction.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Methods in org.apache.expreval.expr.function with parameters of type GenericValue
 Class<? extends GenericValue> GenericFunction.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> DelegateFunction.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> BooleanFunction.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Method parameters in org.apache.expreval.expr.function with type arguments of type GenericValue
static GenericFunction GenericFunction.FunctionType.getFunction(String functionName, List<GenericValue> exprList)
           
static GenericFunction DateFunction.IntervalType.getFunction(String functionName, List<GenericValue> exprList)
           
 

Constructor parameters in org.apache.expreval.expr.function with type arguments of type GenericValue
BooleanFunction(GenericFunction.FunctionType functionType, List<GenericValue> exprs)
           
DateFunction(DateFunction.IntervalType intervalType, List<GenericValue> exprs)
           
DateFunction(GenericFunction.FunctionType functionType, List<GenericValue> exprs)
           
DelegateFunction(String functionName, List<GenericValue> exprList)
           
GenericFunction(GenericFunction.FunctionType functionType, List<GenericValue> exprs)
           
NumberFunction(GenericFunction.FunctionType functionType, List<GenericValue> exprs)
           
StringFunction(GenericFunction.FunctionType functionType, List<GenericValue> exprs)
           
 

Uses of GenericValue in org.apache.expreval.expr.ifthenstmt
 

Classes in org.apache.expreval.expr.ifthenstmt that implement GenericValue
 class BooleanIfThen
           
 class ByteIfThen
           
 class DateIfThen
           
 class DelegateIfThen
           
 class GenericIfThen
           
 class NumberIfThen
           
 class StringIfThen
           
 

Methods in org.apache.expreval.expr.ifthenstmt that return GenericValue
 GenericValue DelegateIfThen.getOptimizedValue()
           
 

Methods in org.apache.expreval.expr.ifthenstmt that return types with arguments of type GenericValue
 Class<? extends GenericValue> DelegateIfThen.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Methods in org.apache.expreval.expr.ifthenstmt with parameters of type GenericValue
 Class<? extends GenericValue> DelegateIfThen.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Constructors in org.apache.expreval.expr.ifthenstmt with parameters of type GenericValue
BooleanIfThen(GenericValue arg0, GenericValue arg1, GenericValue arg2)
           
ByteIfThen(GenericValue arg0, GenericValue arg1, GenericValue arg2)
           
DateIfThen(GenericValue arg0, GenericValue arg1, GenericValue arg2)
           
DelegateIfThen(GenericValue arg0, GenericValue arg1, GenericValue arg2)
           
GenericIfThen(ExpressionType type, GenericValue arg0, GenericValue arg1, GenericValue arg2)
           
NumberIfThen(GenericValue arg0, GenericValue arg1, GenericValue arg2)
           
StringIfThen(GenericValue arg0, GenericValue arg1, GenericValue arg2)
           
 

Uses of GenericValue in org.apache.expreval.expr.instmt
 

Classes in org.apache.expreval.expr.instmt that implement GenericValue
 class BooleanInStmt
           
 class DateInStmt
           
 class DelegateInStmt
           
 class GenericInStmt
           
 class NumberInStmt
           
 class StringInStmt
           
 

Methods in org.apache.expreval.expr.instmt that return GenericValue
 GenericValue DelegateInStmt.getOptimizedValue()
           
 

Methods in org.apache.expreval.expr.instmt that return types with arguments of type GenericValue
protected  List<GenericValue> GenericInStmt.getInList()
           
 Class<? extends GenericValue> GenericInStmt.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> DelegateInStmt.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Methods in org.apache.expreval.expr.instmt with parameters of type GenericValue
 Class<? extends GenericValue> GenericInStmt.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> DelegateInStmt.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Constructors in org.apache.expreval.expr.instmt with parameters of type GenericValue
BooleanInStmt(GenericValue arg0, boolean not, List<GenericValue> inList)
           
DateInStmt(GenericValue arg0, boolean not, List<GenericValue> argList)
           
DelegateInStmt(GenericValue arg0, boolean not, List<GenericValue> inList)
           
GenericInStmt(GenericValue arg0, boolean not, List<GenericValue> inList)
           
NumberInStmt(GenericValue arg0, boolean not, List<GenericValue> inList)
           
StringInStmt(GenericValue arg0, boolean not, List<GenericValue> inList)
           
 

Constructor parameters in org.apache.expreval.expr.instmt with type arguments of type GenericValue
BooleanInStmt(GenericValue arg0, boolean not, List<GenericValue> inList)
           
DateInStmt(GenericValue arg0, boolean not, List<GenericValue> argList)
           
DelegateInStmt(GenericValue arg0, boolean not, List<GenericValue> inList)
           
GenericInStmt(GenericValue arg0, boolean not, List<GenericValue> inList)
           
NumberInStmt(GenericValue arg0, boolean not, List<GenericValue> inList)
           
StringInStmt(GenericValue arg0, boolean not, List<GenericValue> inList)
           
 

Uses of GenericValue in org.apache.expreval.expr.literal
 

Classes in org.apache.expreval.expr.literal that implement GenericValue
 class BooleanLiteral
           
 class ByteLiteral
           
 class DateLiteral
           
 class DefaultKeyword
           
 class DoubleLiteral
           
 class FloatLiteral
           
 class GenericLiteral<T extends Serializable>
           
 class IntegerLiteral
           
 class LongLiteral
           
 class NullLiteral
           
 class ObjectLiteral
           
 class ShortLiteral
           
 class StringLiteral
           
 

Methods in org.apache.expreval.expr.literal that return GenericValue
 GenericValue GenericLiteral.getOptimizedValue()
           
 GenericValue DefaultKeyword.getOptimizedValue()
           
static GenericValue DoubleLiteral.valueOf(String value)
           
 

Methods in org.apache.expreval.expr.literal that return types with arguments of type GenericValue
protected  Class<? extends GenericValue> StringLiteral.getReturnType()
           
protected  Class<? extends GenericValue> ShortLiteral.getReturnType()
           
protected  Class<? extends GenericValue> ObjectLiteral.getReturnType()
           
protected  Class<? extends GenericValue> NullLiteral.getReturnType()
           
protected  Class<? extends GenericValue> LongLiteral.getReturnType()
           
protected  Class<? extends GenericValue> IntegerLiteral.getReturnType()
           
protected abstract  Class<? extends GenericValue> GenericLiteral.getReturnType()
           
protected  Class<? extends GenericValue> FloatLiteral.getReturnType()
           
protected  Class<? extends GenericValue> DoubleLiteral.getReturnType()
           
protected  Class<? extends GenericValue> DateLiteral.getReturnType()
           
protected  Class<? extends GenericValue> ByteLiteral.getReturnType()
           
protected  Class<? extends GenericValue> BooleanLiteral.getReturnType()
           
 Class<? extends GenericValue> GenericLiteral.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> DefaultKeyword.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Methods in org.apache.expreval.expr.literal with parameters of type GenericValue
 Class<? extends GenericValue> GenericLiteral.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> DefaultKeyword.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Uses of GenericValue in org.apache.expreval.expr.node
 

Subinterfaces of GenericValue in org.apache.expreval.expr.node
 interface BooleanValue
           
 interface ByteValue
           
 interface CharValue
           
 interface DateValue
           
 interface DoubleValue
           
 interface FloatValue
           
 interface IntegerValue
           
 interface LongValue
           
 interface NumberValue
           
 interface ObjectValue
           
 interface ShortValue
           
 interface StringValue
           
 

Methods in org.apache.expreval.expr.node that return GenericValue
 GenericValue GenericValue.getOptimizedValue()
           
 

Methods in org.apache.expreval.expr.node that return types with arguments of type GenericValue
 Class<? extends GenericValue> GenericValue.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Methods in org.apache.expreval.expr.node with parameters of type GenericValue
 Class<? extends GenericValue> GenericValue.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Uses of GenericValue in org.apache.expreval.expr.nullcomp
 

Classes in org.apache.expreval.expr.nullcomp that implement GenericValue
 class BooleanNullCompare
           
 class ByteNullCompare
           
 class DateNullCompare
           
 class DelegateNullCompare
           
 class GenericNullCompare
           
 class NumberNullCompare
           
 class ObjectNullCompare
           
 class StringNullCompare
           
 

Methods in org.apache.expreval.expr.nullcomp that return GenericValue
 GenericValue DelegateNullCompare.getOptimizedValue()
           
 

Methods in org.apache.expreval.expr.nullcomp that return types with arguments of type GenericValue
 Class<? extends GenericValue> DelegateNullCompare.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Methods in org.apache.expreval.expr.nullcomp with parameters of type GenericValue
 Class<? extends GenericValue> DelegateNullCompare.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Constructors in org.apache.expreval.expr.nullcomp with parameters of type GenericValue
BooleanNullCompare(boolean not, GenericValue arg0)
           
ByteNullCompare(boolean not, GenericValue arg0)
           
DateNullCompare(boolean not, GenericValue arg0)
           
DelegateNullCompare(boolean not, GenericValue expr)
           
GenericNullCompare(ExpressionType type, boolean not, GenericValue arg0)
           
NumberNullCompare(boolean not, GenericValue arg0)
           
ObjectNullCompare(boolean not, GenericValue arg0)
           
StringNullCompare(boolean not, GenericValue arg0)
           
 

Uses of GenericValue in org.apache.expreval.expr.stringpattern
 

Classes in org.apache.expreval.expr.stringpattern that implement GenericValue
 class ContainsStmt
           
 class GenericStringPatternStmt
           
 class LikeStmt
           
 

Constructors in org.apache.expreval.expr.stringpattern with parameters of type GenericValue
ContainsStmt(GenericValue valueExpr, boolean not, GenericValue patternExpr)
           
GenericStringPatternStmt(GenericValue arg0, boolean not, GenericValue arg1)
           
LikeStmt(GenericValue arg0, boolean not, GenericValue arg1)
           
 

Uses of GenericValue in org.apache.expreval.expr.var
 

Classes in org.apache.expreval.expr.var with type parameters of type GenericValue
 class GenericColumn<T extends GenericValue>
           
 

Classes in org.apache.expreval.expr.var that implement GenericValue
 class BooleanColumn
           
 class ByteColumn
           
 class CharColumn
           
 class DateColumn
           
 class DelegateColumn
           
 class DoubleColumn
           
 class FloatColumn
           
 class GenericColumn<T extends GenericValue>
           
 class IntegerColumn
           
 class KeyColumn
           
 class LongColumn
           
 class NamedParameter
           
 class ObjectColumn
           
 class ShortColumn
           
 class StringColumn
           
 

Methods in org.apache.expreval.expr.var that return GenericValue
 GenericValue NamedParameter.getOptimizedValue()
           
 

Methods in org.apache.expreval.expr.var that return types with arguments of type GenericValue
 GenericColumn<? extends GenericValue> DelegateColumn.getTypedColumn()
           
 Class<? extends GenericValue> NamedParameter.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> GenericColumn.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> DelegateColumn.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Methods in org.apache.expreval.expr.var with parameters of type GenericValue
 Class<? extends GenericValue> NamedParameter.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> GenericColumn.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 Class<? extends GenericValue> DelegateColumn.validateTypes(GenericValue parentExpr, boolean allowCollections)
           
 

Uses of GenericValue in org.apache.hadoop.hbase.hbql.executor
 

Constructors in org.apache.hadoop.hbase.hbql.executor with parameters of type GenericValue
ExecutorProperty(String text, GenericValue arg0)
           
 

Uses of GenericValue in org.apache.hadoop.hbase.hbql.mapping
 

Methods in org.apache.hadoop.hbase.hbql.mapping that return GenericValue
 GenericValue ColumnDefinition.getDefaultValue()
           
 

Methods in org.apache.hadoop.hbase.hbql.mapping that return types with arguments of type GenericValue
 Class<? extends GenericValue> FieldType.getExprType()
           
 

Methods in org.apache.hadoop.hbase.hbql.mapping with parameters of type GenericValue
static ColumnDefinition ColumnDefinition.newMappedColumn(String columnName, String typeName, boolean isArray, ColumnWidth columnWidth, String aliasName, GenericValue defaultValue)
           
 

Constructors in org.apache.hadoop.hbase.hbql.mapping with parameters of type GenericValue
FamilyProperty(FamilyProperty.Type type, GenericValue... exprs)
           
FamilyProperty(String text, GenericValue... arg0)
           
 

Uses of GenericValue in org.apache.hadoop.hbase.hbql.parser
 

Methods in org.apache.hadoop.hbase.hbql.parser that return GenericValue
 GenericValue ParserSupport.getLeftAssociativeBooleanCompare(List<GenericValue> exprList, List<Operator> opList)
           
 GenericValue ParserSupport.getLeftAssociativeCalculation(List<GenericValue> exprList, List<Operator> opList)
           
 

Method parameters in org.apache.hadoop.hbase.hbql.parser with type arguments of type GenericValue
 GenericValue ParserSupport.getLeftAssociativeBooleanCompare(List<GenericValue> exprList, List<Operator> opList)
           
 GenericValue ParserSupport.getLeftAssociativeCalculation(List<GenericValue> exprList, List<Operator> opList)
           
 

Uses of GenericValue in org.apache.hadoop.hbase.hbql.statement
 

Constructors in org.apache.hadoop.hbase.hbql.statement with parameters of type GenericValue
EvalStatement(GenericValue genericValue)
           
StatementPredicate(GenericValue... exprs)
           
 

Constructor parameters in org.apache.hadoop.hbase.hbql.statement with type arguments of type GenericValue
InsertStatement(StatementPredicate predicate, String mappingName, List<GenericValue> columnList, InsertValueSource insertValuesSource)
           
 

Uses of GenericValue in org.apache.hadoop.hbase.hbql.statement.args
 

Methods in org.apache.hadoop.hbase.hbql.statement.args that return types with arguments of type GenericValue
 List<Class<? extends GenericValue>> SingleRowInsertSource.getValuesTypeList()
           
 List<Class<? extends GenericValue>> SelectValuesInsertSource.getValuesTypeList()
           
abstract  List<Class<? extends GenericValue>> InsertValueSource.getValuesTypeList()
           
 

Methods in org.apache.hadoop.hbase.hbql.statement.args with parameters of type GenericValue
static KeyRange KeyRange.newFirstRange(GenericValue arg0)
           
static KeyRange KeyRange.newLastRange(GenericValue arg0)
           
static KeyRange KeyRange.newRange(GenericValue arg0, GenericValue arg1)
           
static KeyRange KeyRange.newSingleKey(GenericValue arg0)
           
 

Constructors in org.apache.hadoop.hbase.hbql.statement.args with parameters of type GenericValue
ColumnWidth(GenericValue val)
           
DefaultArg(Class<? extends GenericValue> exprType, GenericValue expr)
           
KeyInfo(String keyName, GenericValue val)
           
LimitArgs(GenericValue arg0)
           
ScannerCacheArgs(GenericValue val)
           
SelectStatementArgs(SelectStatementArgs.ArgType argType, GenericValue... exprs)
           
TimestampArgs(GenericValue arg0)
           
TimestampArgs(GenericValue arg0, GenericValue arg1)
           
VersionArgs(GenericValue val)
           
 

Constructor parameters in org.apache.hadoop.hbase.hbql.statement.args with type arguments of type GenericValue
DefaultArg(Class<? extends GenericValue> exprType, GenericValue expr)
           
SingleRowInsertSource(List<GenericValue> valueList)
           
 

Uses of GenericValue in org.apache.hadoop.hbase.hbql.statement.select
 

Methods in org.apache.hadoop.hbase.hbql.statement.select that return types with arguments of type GenericValue
 Class<? extends GenericValue> SelectExpressionContext.getExpressionType()
           
 

Methods in org.apache.hadoop.hbase.hbql.statement.select with parameters of type GenericValue
static SelectExpressionContext SelectExpressionContext.newExpression(GenericValue expr, String as)
           
 

Constructors in org.apache.hadoop.hbase.hbql.statement.select with parameters of type GenericValue
SimpleExpressionContext(GenericValue genericValue)
           
 



Copyright © 2011. All Rights Reserved.