public static enum BeanMediator.Action extends Enum<BeanMediator.Action>
| Enum Constant and Description |
|---|
CREATE |
GET_PROPERTY |
REMOVE |
SET_PROPERTY |
| Modifier and Type | Method and Description |
|---|---|
static BeanMediator.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BeanMediator.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BeanMediator.Action CREATE
public static final BeanMediator.Action REMOVE
public static final BeanMediator.Action SET_PROPERTY
public static final BeanMediator.Action GET_PROPERTY
public static BeanMediator.Action[] values()
for (BeanMediator.Action c : BeanMediator.Action.values()) System.out.println(c);
public static BeanMediator.Action 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 © 2005-2017 Apache Software Foundation. All Rights Reserved.