public enum BeanResultType extends Enum<BeanResultType>
Modifier and Type | Method and Description |
---|---|
static BeanResultType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BeanResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BeanResultType ADD
public static final BeanResultType REPLACES
public static final BeanResultType MODIFIES
public static BeanResultType[] values()
for (BeanResultType c : BeanResultType.values()) System.out.println(c);
public static BeanResultType 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 © 2008–2013 Seam Framework. All rights reserved.