public enum EPlace extends Enum<EPlace>
| Enum Constant and Description |
|---|
AFTER
Next sibling.
|
BEFORE
Previous sibling.
|
END
Inside, at the end.
|
START
Inside, at the start.
|
| Modifier and Type | Method and Description |
|---|---|
static EPlace |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EPlace[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EPlace BEFORE
public static final EPlace AFTER
public static final EPlace START
public static final EPlace END
public static EPlace[] values()
for (EPlace c : EPlace.values()) System.out.println(c);
public static EPlace 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 © 2016. All rights reserved.