public enum SecurityQueryStrategy extends Enum<SecurityQueryStrategy>
Enum Constant and Description |
---|
EXISTS
modification with exists.
|
JOIN
modification with join.
|
SUBSELECT
modification with subselect.
|
Modifier and Type | Method and Description |
---|---|
static SecurityQueryStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecurityQueryStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityQueryStrategy SUBSELECT
public static final SecurityQueryStrategy JOIN
public static final SecurityQueryStrategy EXISTS
public static SecurityQueryStrategy[] values()
for (SecurityQueryStrategy c : SecurityQueryStrategy.values()) System.out.println(c);
public static SecurityQueryStrategy 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 © 2020 Hyland Software Germany GmbH. All rights reserved.