public static enum Test.Kind extends Enum<Test.Kind>
Enum Constant and Description |
---|
NAME
Test name (*:name).
|
URI
Test uri (prefix:*).
|
URI_NAME
Test uri and name (prefix:name).
|
WILDCARD
Accept all nodes (*).
|
Modifier and Type | Method and Description |
---|---|
static Test.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Test.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Test.Kind WILDCARD
public static final Test.Kind NAME
public static final Test.Kind URI
public static final Test.Kind URI_NAME
public static Test.Kind[] values()
for (Test.Kind c : Test.Kind.values()) System.out.println(c);
public static Test.Kind 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.