public static enum DOFQuery.MatchStyle extends java.lang.Enum<DOFQuery.MatchStyle>
Enum Constant and Description |
---|
AT_LEAST
Match Object ID's that include, at least, the specified attributes, but may include
additional attributes which will be ignored.
|
BASE
Match base Object ID's only, ignoring any attributes.
|
EXACT
Match Object ID's exactly, including any attributes.
|
Modifier and Type | Method and Description |
---|---|
static DOFQuery.MatchStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DOFQuery.MatchStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DOFQuery.MatchStyle EXACT
public static final DOFQuery.MatchStyle AT_LEAST
public static final DOFQuery.MatchStyle BASE
public static DOFQuery.MatchStyle[] values()
for (DOFQuery.MatchStyle c : DOFQuery.MatchStyle.values()) System.out.println(c);
public static DOFQuery.MatchStyle valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null