Class BaseColumn
- java.lang.Object
-
- org.alfresco.repo.search.impl.querymodel.impl.BaseColumn
-
- All Implemented Interfaces:
Column,FunctionInvokation
- Direct Known Subclasses:
LuceneColumn
public class BaseColumn extends java.lang.Object implements Column
- Author:
- andyh
-
-
Constructor Summary
Constructors Constructor Description BaseColumn(Function function, java.util.Map<java.lang.String,Argument> functionArguments, java.lang.String alias)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAlias()Get the column alias.FunctiongetFunction()Get the functionjava.util.Map<java.lang.String,Argument>getFunctionArguments()Get the functions arguments.booleanisOrderable()booleanisQueryable()java.lang.StringtoString()
-
-
-
Method Detail
-
getAlias
public java.lang.String getAlias()
Description copied from interface:ColumnGet the column alias.
-
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
-
isOrderable
public boolean isOrderable()
- Specified by:
isOrderablein interfaceColumn
-
isQueryable
public boolean isQueryable()
- Specified by:
isQueryablein interfaceColumn
-
-