public enum Pos extends Enum<Pos>
Java class for pos.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="pos">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="before"/>
<enumeration value="after"/>
<enumeration value="prepend"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static Pos |
fromValue(String v) |
String |
value() |
static Pos |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Pos[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Pos BEFORE
public static final Pos AFTER
public static final Pos PREPEND
public static Pos[] values()
for (Pos c : Pos.values()) System.out.println(c);
public static Pos 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 value()
Copyright © 2016. All Rights Reserved.