public enum DirectiveType extends Enum<DirectiveType>
| Enum Constant and Description |
|---|
ldap |
nxql |
nxqlQueryAndFetch |
sql |
| Modifier and Type | Method and Description |
|---|---|
static DirectiveType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DirectiveType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DirectiveType nxql
public static final DirectiveType nxqlQueryAndFetch
public static final DirectiveType sql
public static final DirectiveType ldap
public static DirectiveType[] values()
for (DirectiveType c : DirectiveType.values()) System.out.println(c);
public static DirectiveType 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 © 2019. All rights reserved.