Uses of Enum Class
cdc.args.Strictness
-
Uses of Strictness in cdc.args
Methods in cdc.args that return StrictnessModifier and TypeMethodDescriptionstatic StrictnessReturns the enum constant of this class with the specified name.static Strictness[]Strictness.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in cdc.args with parameters of type StrictnessModifier and TypeMethodDescriptionstatic 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.