Uses of Class
dev.metaschema.core.metapath.function.IArgument.Builder
Packages that use IArgument.Builder
Package
Description
Provides the core framework for defining and executing Metapath functions.
-
Uses of IArgument.Builder in dev.metaschema.core.metapath.function
Methods in dev.metaschema.core.metapath.function that return IArgument.BuilderModifier and TypeMethodDescriptionstatic IArgument.BuilderIArgument.builder()Get a new argument builder.Define the name of the function argument.IArgument.Builder.one()Identifies the argument's cardinality as a single, required item (one).IArgument.Builder.oneOrMore()Identifies the argument's cardinality as a required series of items (one or more).Define the type of the function argument.IArgument.Builder.type(IEnhancedQName name) Define the type of the function argument.IArgument.Builder.zeroOrMore()Identifies the argument's cardinality as an optional series of items (zero or more).IArgument.Builder.zeroOrOne()Identifies the argument's cardinality as a single, optional item (zero or one).Methods in dev.metaschema.core.metapath.function with parameters of type IArgument.BuilderModifier and TypeMethodDescriptionIFunction.Builder.argument(IArgument.Builder builder) Add an argument based on the providedbuilder.