本文整理汇总了Java中org.alfresco.repo.search.impl.querymodel.FunctionArgument类的典型用法代码示例。如果您正苦于以下问题:Java FunctionArgument类的具体用法?Java FunctionArgument怎么用?Java FunctionArgument使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
FunctionArgument类属于org.alfresco.repo.search.impl.querymodel包,在下文中一共展示了FunctionArgument类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getLuceneFunction
import org.alfresco.repo.search.impl.querymodel.FunctionArgument; //导入依赖的package包/类
public LuceneFunction getLuceneFunction(FunctionArgument functionArgument)
{
if (functionArgument == null)
{
return LuceneFunction.FIELD;
} else
{
String functionName = functionArgument.getFunction().getName();
if (functionName.equals(Upper.NAME))
{
return LuceneFunction.UPPER;
} else if (functionName.equals(Lower.NAME))
{
return LuceneFunction.LOWER;
} else
{
throw new QueryModelException("Unsupported function: " + functionName);
}
}
}
示例2: createFunctionArgument
import org.alfresco.repo.search.impl.querymodel.FunctionArgument; //导入依赖的package包/类
@Override
public FunctionArgument createFunctionArgument(String name, Function function, Map<String, Argument> functionArguments)
{
return new DBFunctionArgument(name, function, functionArguments);
}
示例3: getLuceneFunction
import org.alfresco.repo.search.impl.querymodel.FunctionArgument; //导入依赖的package包/类
public LuceneFunction getLuceneFunction(FunctionArgument functionArgument)
{
throw new UnsupportedOperationException();
}
示例4: getFunctionArgument
import org.alfresco.repo.search.impl.querymodel.FunctionArgument; //导入依赖的package包/类
/**
* @return the functionArgument
*/
protected FunctionArgument getFunctionArgument()
{
return functionArgument;
}
示例5: createFunctionArgument
import org.alfresco.repo.search.impl.querymodel.FunctionArgument; //导入依赖的package包/类
public FunctionArgument createFunctionArgument(String name, Function function, Map<String, Argument> functionArguments)
{
return new LuceneFunctionArgument(name, function, functionArguments);
}