Interface IFunctionArguments
- All Known Subinterfaces:
IFunctionWithArguments
- All Known Implementing Classes:
AsposeRootArgs
public interface IFunctionArguments
-
Method Summary
Modifier and TypeMethodDescriptiondefault StringgetPositionalArg(int index) default booleanhasPositionalArg(int index)
-
Method Details
-
getPositionalArgs
-
getPositionalArg
- Parameters:
index- 0-based index of the argument.- Returns:
- The positional argument at the given index.
-
hasPositionalArg
default boolean hasPositionalArg(int index) - Parameters:
index- 0-based index of the argument.- Returns:
- Whether a positional argument at the given index exists, i.e. whether at least (index+1) arguments were provided.
-
getNamedArgs
-