public enum RelativePosition extends Enum<RelativePosition>
PropertyModel
s inside a BeanModel
.Enum Constant and Description |
---|
AFTER
The new
PropertyModel goes after the existing model. |
BEFORE
The new
PropertyModel goes before the existing model. |
Modifier and Type | Method and Description |
---|---|
static RelativePosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelativePosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelativePosition BEFORE
PropertyModel
goes before the existing model.public static final RelativePosition AFTER
PropertyModel
goes after the existing model.public static RelativePosition[] values()
for (RelativePosition c : RelativePosition.values()) System.out.println(c);
public static RelativePosition 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 null${project.version} - Copyright © 2003-2015 The Apache Software Foundation.