public enum BindingType extends Enum<BindingType>
Enum Constant and Description |
---|
LIST
Bind a
List of instances of the binding class. |
MAP
Bind a
Map of instances of the binding class. |
SINGLE
Bind a single instance of the binding 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 SINGLE
public static final BindingType LIST
public static final BindingType MAP
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 © 2020. All rights reserved.