public static enum JQL.JQLDeclarationType extends Enum<JQL.JQLDeclarationType>
| Enum Constant and Description |
|---|
JQL_COMPACT
jql is not defined explicity, it's gained from attributes
|
JQL_EXPLICIT
jql is defined with jql attribute
|
| Modifier and Type | Method and Description |
|---|---|
static JQL.JQLDeclarationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JQL.JQLDeclarationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JQL.JQLDeclarationType JQL_EXPLICIT
public static final JQL.JQLDeclarationType JQL_COMPACT
public static JQL.JQLDeclarationType[] values()
for (JQL.JQLDeclarationType c : JQL.JQLDeclarationType.values()) System.out.println(c);
public static JQL.JQLDeclarationType 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.