Uses of Class
cdc.args.FormalArg
-
-
Uses of FormalArg in cdc.args
Subclasses of FormalArg in cdc.args Modifier and Type Class Description classArrayFormalArg<E>Formal argument for arrays.classCompositeFormalArg<C,E>Base class of formal arguments whose type is composite.classListFormalArg<E>Formal argument for lists.classMapFormalArg<K,V>Formal argument for maps.classSetFormalArg<E>Formal argument for sets.Methods in cdc.args that return FormalArg Modifier and Type Method Description FormalArg<T>FormalArg.Builder. build()FormalArg<?>FormalArgs. getArg(int index)Returns the argument that has a position.FormalArg<?>FormalArgs. getArg(String name)Returns the argument that has a name.FormalArg<?>[]FormalArgs. getArgs()static FormalArg<?>FormalArg. merge(FormalArg<?> farg1, FormalArg<?> farg2, Necessity privileged)Merges 2 formal arguments.Methods in cdc.args with parameters of type FormalArg Modifier and Type Method Description FormalArgs.BuilderFormalArgs.Builder. add(FormalArg<?> farg)<T> Args.BuilderArgs.Builder. arg(FormalArg<T> farg, T value)Args.BuilderArgs.Builder. argRaw(FormalArg<?> farg, Object value)<T> TArgs. getValue(FormalArg<T> farg)Returns the value associated to a formal argument ornull.<T> TArgs. getValue(FormalArg<T> farg, T def)Returns the value associated to a formal argument or a default value.booleanArgs.Builder. hasArgMatchingName(FormalArg<?> farg)booleanFormalArgs. hasArgMatchingName(FormalArg<?> farg)booleanArgs. hasArgWithMatchingName(FormalArg<?> farg)Returnstrueif this tuple contains an argument whose name matches the name of a formal argument.booleanArg. isCompliantWith(FormalArg<?> farg)booleanFormalArg. isWeakerThan(FormalArg<?> other)Returnstrueif this formal argument is weaker than another one.static FormalArg<?>FormalArg. merge(FormalArg<?> farg1, FormalArg<?> farg2, Necessity privileged)Merges 2 formal arguments.<T> Args.BuilderArgs.Builder. setArg(FormalArg<T> farg, T value)Deprecated, for removal: This API element is subject to removal in a future version.Args.BuilderArgs.Builder. setArgRaw(FormalArg<?> farg, Object value)Deprecated, for removal: This API element is subject to removal in a future version.Constructors in cdc.args with parameters of type FormalArg Constructor Description Arg(FormalArg<T> farg, T value)Creates an effective argument that is compliant with a formal argument.FormalArgs(FormalArg<?>... args)Creates a tuple of formal arguments from an array.Constructor parameters in cdc.args with type arguments of type FormalArg Constructor Description FormalArgs(List<FormalArg<?>> args)Creates a tuple of formal arguments from a list.
-