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