public enum QueryContextElementType extends Enum<QueryContextElementType>
| Enum Constant and Description |
|---|
EXPLICIT
Describes when a query context element is referenced directly in a query (e.g.
|
IMPLICIT
Describes when a query context element is referenced indirectly in a query (e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static QueryContextElementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryContextElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryContextElementType EXPLICIT
public static final QueryContextElementType IMPLICIT
public static QueryContextElementType[] values()
for (QueryContextElementType c : QueryContextElementType.values()) System.out.println(c);
public static QueryContextElementType 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 © 2002-2023 Atlassian. All Rights Reserved.