lux.xpath
Enum AbstractExpression.Type

java.lang.Object
  extended by java.lang.Enum<AbstractExpression.Type>
      extended by lux.xpath.AbstractExpression.Type
All Implemented Interfaces:
Serializable, Comparable<AbstractExpression.Type>
Enclosing class:
AbstractExpression

public static enum AbstractExpression.Type
extends Enum<AbstractExpression.Type>


Enum Constant Summary
ATTRIBUTE
           
BINARY_OPERATION
           
CASTABLE
           
COMMENT
           
COMPUTED_ELEMENT
           
CONDITIONAL
           
DOCUMENT_CONSTRUCTOR
           
DOT
           
ELEMENT
           
FLWOR
           
FUNCTION_CALL
           
INSTANCE_OF
           
LET
           
LITERAL
           
PATH_EXPRESSION
           
PATH_STEP
           
PREDICATE
           
PROCESSING_INSTRUCTION
           
ROOT
           
SATISFIES
           
SEQUENCE
           
SET_OPERATION
           
SUBSEQUENCE
           
TEXT
           
TREAT
           
UNARY_MINUS
           
VARIABLE
           
 
Method Summary
static AbstractExpression.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AbstractExpression.Type[] 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

PATH_EXPRESSION

public static final AbstractExpression.Type PATH_EXPRESSION

PATH_STEP

public static final AbstractExpression.Type PATH_STEP

PREDICATE

public static final AbstractExpression.Type PREDICATE

BINARY_OPERATION

public static final AbstractExpression.Type BINARY_OPERATION

SET_OPERATION

public static final AbstractExpression.Type SET_OPERATION

LITERAL

public static final AbstractExpression.Type LITERAL

ROOT

public static final AbstractExpression.Type ROOT

DOT

public static final AbstractExpression.Type DOT

FUNCTION_CALL

public static final AbstractExpression.Type FUNCTION_CALL

SEQUENCE

public static final AbstractExpression.Type SEQUENCE

UNARY_MINUS

public static final AbstractExpression.Type UNARY_MINUS

SUBSEQUENCE

public static final AbstractExpression.Type SUBSEQUENCE

LET

public static final AbstractExpression.Type LET

VARIABLE

public static final AbstractExpression.Type VARIABLE

COMPUTED_ELEMENT

public static final AbstractExpression.Type COMPUTED_ELEMENT

ELEMENT

public static final AbstractExpression.Type ELEMENT

ATTRIBUTE

public static final AbstractExpression.Type ATTRIBUTE

TEXT

public static final AbstractExpression.Type TEXT

FLWOR

public static final AbstractExpression.Type FLWOR

CONDITIONAL

public static final AbstractExpression.Type CONDITIONAL

COMMENT

public static final AbstractExpression.Type COMMENT

DOCUMENT_CONSTRUCTOR

public static final AbstractExpression.Type DOCUMENT_CONSTRUCTOR

PROCESSING_INSTRUCTION

public static final AbstractExpression.Type PROCESSING_INSTRUCTION

SATISFIES

public static final AbstractExpression.Type SATISFIES

INSTANCE_OF

public static final AbstractExpression.Type INSTANCE_OF

CASTABLE

public static final AbstractExpression.Type CASTABLE

TREAT

public static final AbstractExpression.Type TREAT
Method Detail

values

public static AbstractExpression.Type[] 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 (AbstractExpression.Type c : AbstractExpression.Type.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static AbstractExpression.Type 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 © 2013. All Rights Reserved.