Enum Axis.Direction
- java.lang.Object
-
- java.lang.Enum<Axis.Direction>
-
- com.evolvedbinary.xpath.parser.ast.Axis.Direction
-
- All Implemented Interfaces:
Serializable,Comparable<Axis.Direction>
- Enclosing class:
- Axis
public static enum Axis.Direction extends Enum<Axis.Direction>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANCESTORANCESTOR_OR_SELFATTRIBUTECHILDDESCENDANTDESCENDANT_OR_SELFFOLLOWINGFOLLOWING_SIBLINGNAMESPACEPARENTPRECEDINGPRECEDING_SIBLINGSELF
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Axis.DirectionvalueOf(String name)Returns the enum constant of this type with the specified name.static Axis.Direction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHILD
public static final Axis.Direction CHILD
-
PARENT
public static final Axis.Direction PARENT
-
PRECEDING_SIBLING
public static final Axis.Direction PRECEDING_SIBLING
-
PRECEDING
public static final Axis.Direction PRECEDING
-
ANCESTOR_OR_SELF
public static final Axis.Direction ANCESTOR_OR_SELF
-
ANCESTOR
public static final Axis.Direction ANCESTOR
-
SELF
public static final Axis.Direction SELF
-
DESCENDANT_OR_SELF
public static final Axis.Direction DESCENDANT_OR_SELF
-
DESCENDANT
public static final Axis.Direction DESCENDANT
-
FOLLOWING_SIBLING
public static final Axis.Direction FOLLOWING_SIBLING
-
FOLLOWING
public static final Axis.Direction FOLLOWING
-
NAMESPACE
public static final Axis.Direction NAMESPACE
-
ATTRIBUTE
public static final Axis.Direction ATTRIBUTE
-
-
Method Detail
-
values
public static Axis.Direction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Axis.Direction c : Axis.Direction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Axis.Direction valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-