com.evolvedbinary.xpath.parser.ast
Enum Axis.Direction

java.lang.Object
  extended by java.lang.Enum<Axis.Direction>
      extended by 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
ANCESTOR
           
ANCESTOR_OR_SELF
           
ATTRIBUTE
           
CHILD
           
DESCENDANT
           
DESCENDANT_OR_SELF
           
FOLLOWING
           
FOLLOWING_SIBLING
           
NAMESPACE
           
PARENT
           
PRECEDING
           
PRECEDING_SIBLING
           
SELF
           
 
Method Summary
static Axis.Direction valueOf(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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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 name
NullPointerException - if the argument is null


Copyright © 2016 Evolved Binary Ltd.. All Rights Reserved.