Class BaseFunctionArgument
- java.lang.Object
-
- org.alfresco.repo.search.impl.querymodel.impl.BaseArgument
-
- org.alfresco.repo.search.impl.querymodel.impl.BaseDynamicArgument
-
- org.alfresco.repo.search.impl.querymodel.impl.BaseFunctionArgument
-
- All Implemented Interfaces:
Argument,DynamicArgument,FunctionArgument,FunctionInvokation
- Direct Known Subclasses:
LuceneFunctionArgument
public class BaseFunctionArgument extends BaseDynamicArgument implements FunctionArgument
- Author:
- andyh
-
-
Constructor Summary
Constructors Constructor Description BaseFunctionArgument(java.lang.String name, Function function, java.util.Map<java.lang.String,Argument> arguments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FunctiongetFunction()Get the functionjava.util.Map<java.lang.String,Argument>getFunctionArguments()Get the functions arguments.java.io.SerializablegetValue(FunctionEvaluationContext context)booleanisQueryable()java.lang.StringtoString()-
Methods inherited from class org.alfresco.repo.search.impl.querymodel.impl.BaseArgument
getName, isOrderable
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.alfresco.repo.search.impl.querymodel.Argument
getName, isOrderable
-
-
-
-
Method Detail
-
getValue
public java.io.Serializable getValue(FunctionEvaluationContext context)
-
getFunction
public Function getFunction()
Description copied from interface:FunctionInvokationGet the function- Specified by:
getFunctionin interfaceFunctionInvokation- Returns:
- Function
-
getFunctionArguments
public java.util.Map<java.lang.String,Argument> getFunctionArguments()
Description copied from interface:FunctionInvokationGet the functions arguments.- Specified by:
getFunctionArgumentsin interfaceFunctionInvokation- Returns:
- Map
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
isQueryable
public boolean isQueryable()
- Specified by:
isQueryablein interfaceArgument- Overrides:
isQueryablein classBaseArgument
-
-