public static enum Bean.Type extends Enum<Bean.Type>
| Enum Constant and Description |
|---|
LIST |
MAP |
PROPERTIES |
SET |
SIMPLE |
| Modifier and Type | Method and Description |
|---|---|
static Bean.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Bean.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Bean.Type SIMPLE
public static final Bean.Type LIST
public static final Bean.Type SET
public static final Bean.Type PROPERTIES
public static final Bean.Type MAP
public static Bean.Type[] values()
for (Bean.Type c : Bean.Type.values()) System.out.println(c);
public static Bean.Type 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-2013 Static IOC OSS project. All Rights Reserved.