Package de.xima.aspose.processor.core
Class AsposeRootArgs
- java.lang.Object
-
- de.xima.aspose.processor.core.AsposeRootArgs
-
- All Implemented Interfaces:
IFunctionArguments
public class AsposeRootArgs extends Object implements IFunctionArguments
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>
getNamedArgs()
List<String>
getPositionalArgs()
String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface de.xima.aspose.processor.interfaces.IFunctionArguments
getPositionalArg, hasPositionalArg
-
-
-
-
Method Detail
-
getNamedArgs
public Map<String,String> getNamedArgs()
- Specified by:
getNamedArgs
in interfaceIFunctionArguments
- Returns:
- A map with the named arguments of the function, e.g.
field.test(key1|key2#value1|value2)
-
getPositionalArgs
public List<String> getPositionalArgs()
- Specified by:
getPositionalArgs
in interfaceIFunctionArguments
- Returns:
- A list with the positional arguments of the function, e.g.
field.test(value1|value2)
-
-