public enum MatchMode extends Enum<MatchMode>
Modifier and Type | Method and Description |
---|---|
String |
toCaseSensitivePattern(String str) |
String |
toLowerCasePattern(String str) |
static MatchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchMode START
public static final MatchMode END
public static final MatchMode ANYWHERE
public static final MatchMode EXACT
public static MatchMode[] values()
for (MatchMode c : MatchMode.values()) System.out.println(c);
public static MatchMode 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 © 2024 OpenMRS Inc.. All rights reserved.