public enum FixedLengthBindingType extends Enum<FixedLengthBindingType>
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 FixedLengthBindingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FixedLengthBindingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FixedLengthBindingType SINGLE
public static final FixedLengthBindingType LIST
public static final FixedLengthBindingType MAP
public static FixedLengthBindingType[] values()
for (FixedLengthBindingType c : FixedLengthBindingType.values()) System.out.println(c);
public static FixedLengthBindingType 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.