public enum BindingType extends Enum<BindingType>
| Enum Constant and Description |
|---|
CUSTOM
Binds the Implementation to the Classes specifed by @To(to={}) Equals: for(Class{@literal
|
IMPLEMENTATION
Binds the Implementation to itself.
|
INTERFACES
Binds the Implementation to all implemented Interfaces.
|
SUPER
Binds the Implementation to the extended Super-Class.
|
| Modifier and Type | Method and Description |
|---|---|
static BindingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BindingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindingType IMPLEMENTATION
public static final BindingType INTERFACES
public static final BindingType SUPER
public static final BindingType CUSTOM
public static BindingType[] values()
for (BindingType c : BindingType.values()) System.out.println(c);
public static BindingType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2012-2015. All Rights Reserved.