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