| Enum Constant and Description |
|---|
FILEDIRSEP
File variable.
|
FILEPATHSEP
File variable.
|
XSLTPROC
XSLT variable.
|
XSLTVERSION
XSLT variable.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
init(QueryContext ctx)
Initializes all variables.
|
java.lang.String |
toString() |
static Variable |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Variable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Variable FILEDIRSEP
public static final Variable FILEPATHSEP
public static final Variable XSLTPROC
public static final Variable XSLTVERSION
public static Variable[] values()
for (Variable c : Variable.values()) System.out.println(c);
public static Variable 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 nullpublic static void init(QueryContext ctx)
ctx - query contextpublic final java.lang.String toString()
toString in class java.lang.Enum<Variable>