public enum Position extends Enum<Position>
PropertyEditor
.Modifier and Type | Field and Description |
---|---|
static String |
STRING_ABSOLUTE
Internal constant to use in annotations.
|
static String |
STRING_FIXED
Internal constant to use in annotations.
|
static String |
STRING_RELATIVE
Internal constant to use in annotations.
|
Modifier and Type | Method and Description |
---|---|
String |
getValue()
Deprecated.
Since Tobago 3.0.0 Please use
Position:name |
static Position |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Position absolute
public static final Position relative
public static final Position fixed
public static final String STRING_ABSOLUTE
absolute
public static final String STRING_RELATIVE
relative
public static final String STRING_FIXED
fixed
public static Position[] values()
for (Position c : Position.values()) System.out.println(c);
public static Position 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 nullpublic String getValue()
Position:name
Copyright © 2002–2015 The Apache Software Foundation. All rights reserved.