| Enum Constant and Description |
|---|
CNS
Creates new fragments.
|
CTX
Depends on context.
|
NDT
Non-deterministic.
|
POS
Context position.
|
UPD
Performs updates.
|
VAR
References a variable.
|
X30
Based on XQuery 3.0.
|
| Modifier and Type | Method and Description |
|---|---|
static Expr.Use |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Expr.Use[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Expr.Use CNS
public static final Expr.Use CTX
public static final Expr.Use NDT
public static final Expr.Use POS
public static final Expr.Use UPD
public static final Expr.Use X30
public static Expr.Use[] values()
for (Expr.Use c : Expr.Use.values()) System.out.println(c);
public static Expr.Use 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 null