public static enum MoveComponent.Destination extends Enum<MoveComponent.Destination>
| Enum Constant and Description | 
|---|
ADD_FIRST  | 
ADD_LAST  | 
AFTER  | 
BEFORE  | 
BEHAVIOR  | 
FACET  | 
| Modifier and Type | Method and Description | 
|---|---|
static MoveComponent.Destination | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static MoveComponent.Destination[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final MoveComponent.Destination BEFORE
public static final MoveComponent.Destination ADD_FIRST
public static final MoveComponent.Destination ADD_LAST
public static final MoveComponent.Destination FACET
public static final MoveComponent.Destination BEHAVIOR
public static final MoveComponent.Destination AFTER
public static MoveComponent.Destination[] values()
for (MoveComponent.Destination c : MoveComponent.Destination.values()) System.out.println(c);
public static MoveComponent.Destination 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–2016 OmniFaces. All rights reserved.