Enum Class ForwardAxis

java.lang.Object
java.lang.Enum<ForwardAxis>
org.rumbledb.expressions.xml.axis.ForwardAxis
All Implemented Interfaces:
Serializable, Comparable<ForwardAxis>, Constable

public enum ForwardAxis extends Enum<ForwardAxis>
  • Enum Constant Details

    • CHILD

      public static final ForwardAxis CHILD
    • DESCENDANT

      public static final ForwardAxis DESCENDANT
    • ATTRIBUTE

      public static final ForwardAxis ATTRIBUTE
    • SELF

      public static final ForwardAxis SELF
    • DESCENDANT_OR_SELF

      public static final ForwardAxis DESCENDANT_OR_SELF
    • FOLLOWING_SIBLING

      public static final ForwardAxis FOLLOWING_SIBLING
    • FOLLOWING

      public static final ForwardAxis FOLLOWING
  • Method Details

    • values

      public static ForwardAxis[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ForwardAxis valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getAxisValue

      public String getAxisValue()
    • fromString

      public static ForwardAxis fromString(String text)