Args |
Factories.ArgsConverter.apply(Args args,
List<FormalArgs> fargsList) |
Converts arguments.
|
static boolean |
Args.areCompliant(Args args,
FormalArgs fargs,
Strictness strictness) |
Returns true when an arguments is compliant with a formal arguments.
|
static boolean |
Args.areCompliant(Args args,
Strictness strictness,
FormalArgs... array) |
|
static boolean |
Args.areCompliant(Args args,
Strictness strictness,
Collection<FormalArgs> collection) |
|
static boolean |
Args.areLooselyCompliant(Args args,
FormalArgs fargs) |
Returns true when an arguments is loosely compliant with a formal arguments.
|
static boolean |
Args.areLooselyCompliant(Args args,
FormalArgs... array) |
|
static boolean |
Args.areLooselyCompliant(Args args,
Collection<FormalArgs> collection) |
|
static boolean |
Args.areStrictlyCompliant(Args args,
FormalArgs fargs) |
Returns true when an arguments is strictly compliant with a formal arguments.
|
static boolean |
Args.areStrictlyCompliant(Args args,
FormalArgs... array) |
|
static boolean |
Args.areStrictlyCompliant(Args args,
Collection<FormalArgs> collection) |
|
Args.Builder |
Args.Builder.args(Args other) |
|
static void |
Args.checkCompliance(Args args,
Strictness strictness,
FormalArgs... array) |
|
static void |
Args.checkCompliance(Args args,
Strictness strictness,
Collection<FormalArgs> collection) |
|
static void |
Args.checkLooseCompliance(Args args,
FormalArgs... array) |
|
static void |
Args.checkLooseCompliance(Args args,
Collection<FormalArgs> collection) |
|
static void |
Args.checkStrictCompliance(Args args,
FormalArgs... array) |
|
static void |
Args.checkStrictCompliance(Args args,
Collection<FormalArgs> collection) |
|
static Args |
Factories.convertToStringValues(Args args) |
Converts arguments to strings.
|
T |
AbstractFactory.create(Args args) |
|
protected abstract T |
AbstractFactory.create(Args args,
FormalArgs fargs) |
Creates an object.
|
protected T |
AutoFactory.create(Args args,
FormalArgs fargs) |
|
static Object |
Factories.create(Class<?> cls,
Args args) |
Creates an object.
|
static Object |
Factories.create(String className,
Args args) |
Creates an object.
|
T |
Factory.create(Args args) |
Creates a T instance.
|
T |
Singleton.create(Args args) |
|
static FormalArgs |
Args.reduceNecessity(FormalArgs fargs,
Args args) |
|
Args |
Args.set(Args other) |
Creates a new set from this one and another one.
|
Args.Builder |
Args.Builder.setArgs(Args other) |
Deprecated, for removal: This API element is subject to removal in a future version.
|
static <E> Factory<E> |
Factory.singleton(E object,
Args meta) |
Creates a Singleton factory.
|
static <E> Factory<E> |
Factory.singleton(Class<E> objectClass,
E object,
Args meta) |
Creates a Singleton factory.
|