public enum USAMatchMode extends Enum<USAMatchMode> implements MatchMode
Enum Constant and Description |
---|
CASS
CASS match mode
|
CUSTOM
No Match mode is applied
|
EXACT
Exact Match mode, which uses the strictest matching criteria.
|
INTERACTIVE
Interactive match mode
|
RELAXED
Relaxed Match mode, which uses very loose matching criteria.
|
STANDARD
Standard Match mode.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static USAMatchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static USAMatchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final USAMatchMode RELAXED
public static final USAMatchMode EXACT
public static final USAMatchMode STANDARD
public static final USAMatchMode CUSTOM
public static final USAMatchMode INTERACTIVE
public static final USAMatchMode CASS
public static USAMatchMode[] values()
for (USAMatchMode c : USAMatchMode.values()) System.out.println(c);
public static USAMatchMode 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 nullpublic String toString()
toString
in class Enum<USAMatchMode>
Copyright © 2024. All rights reserved.