public static enum Expr.Flag extends Enum<Expr.Flag>
Enum Constant and Description |
---|
CNS
Creates new fragments.
|
CTX
Depends on context.
|
FCS
Focus-dependent.
|
HOF
Invokes user-supplied functions.
|
NDT
Non-deterministic.
|
UPD
Performs updates.
|
Modifier and Type | Method and Description |
---|---|
static Expr.Flag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Expr.Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Expr.Flag CNS
public static final Expr.Flag CTX
public static final Expr.Flag NDT
public static final Expr.Flag FCS
public static final Expr.Flag UPD
public static final Expr.Flag HOF
public static Expr.Flag[] values()
for (Expr.Flag c : Expr.Flag.values()) System.out.println(c);
public static Expr.Flag valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2005–2015 BaseX Team. All rights reserved.