public enum Axis extends java.lang.Enum<Axis>
| Enum Constant and Description |
|---|
CHILD |
FOLLOWING |
FOLLOWING_SIBLING |
NEXT |
SELF |
| Modifier and Type | Method and Description |
|---|---|
static Axis |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Axis[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Axis SELF
public static final Axis CHILD
public static final Axis NEXT
public static final Axis FOLLOWING_SIBLING
public static final Axis FOLLOWING
public static Axis[] values()
for (Axis c : Axis.values()) System.out.println(c);
public static Axis valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2014 eXo Platform SAS. All Rights Reserved.