public enum WrapperType extends Enum<WrapperType>
| Enum Constant and Description |
|---|
ARRAY |
COLLECTION |
OPTIONAL |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static WrapperType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WrapperType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WrapperType OPTIONAL
public static final WrapperType COLLECTION
public static final WrapperType ARRAY
public static final WrapperType UNKNOWN
public static WrapperType[] values()
for (WrapperType c : WrapperType.values()) System.out.println(c);
public static WrapperType 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 © 2018–2021. All rights reserved.