Uses of Class
cdc.args.Strictness
-
-
Uses of Strictness in cdc.args
Methods in cdc.args that return Strictness Modifier and Type Method Description static StrictnessStrictness. valueOf(String name)Returns the enum constant of this type with the specified name.static Strictness[]Strictness. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in cdc.args with parameters of type Strictness Modifier and Type Method Description static booleanArgs. areCompliant(Args args, FormalArgs fargs, Strictness strictness)Returnstruewhen an arguments is compliant with a formal arguments.static booleanArgs. areCompliant(Args args, Strictness strictness, FormalArgs... array)static booleanArgs. areCompliant(Args args, Strictness strictness, Collection<FormalArgs> collection)static voidArgs. checkCompliance(Args args, Strictness strictness, FormalArgs... array)static voidArgs. checkCompliance(Args args, Strictness strictness, Collection<FormalArgs> collection)voidArgs. checkComplianceWithOneOf(Strictness strictness, FormalArgs... array)Checks compliance of the arguments with formal arguments tuples.voidArgs. checkComplianceWithOneOf(Strictness strictness, Collection<FormalArgs> collection)Checks compliance of this arguments with one of a collection of formal arguments.booleanArgs. isCompliantWith(FormalArgs fargs, Strictness strictness)Returns true when this Args is compliant with formal arguments and strictness.booleanArgs. isCompliantWithOneOf(Strictness strictness, FormalArgs... array)Returnstrueif this arguments is compliant with at least one formal argument tuple.booleanArgs. isCompliantWithOneOf(Strictness strictness, Collection<FormalArgs> collection)Returnstrueif this arguments is compliant with at least one formal argument tuple.
-