public static enum Lookup.SearchConstraints extends Enum<Lookup.SearchConstraints>
| Enum Constant and Description |
|---|
EXACT_NAME_MATCH |
WILDCARD_MATCH |
| Modifier and Type | Method and Description |
|---|---|
static Lookup.SearchConstraints |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Lookup.SearchConstraints[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Lookup.SearchConstraints EXACT_NAME_MATCH
public static final Lookup.SearchConstraints WILDCARD_MATCH
public static Lookup.SearchConstraints[] values()
for (Lookup.SearchConstraints c : Lookup.SearchConstraints.values()) System.out.println(c);
public static Lookup.SearchConstraints 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 © 1997–2020 CRISTAL-iSE. All rights reserved.