public enum MatchingMethod extends java.lang.Enum<MatchingMethod>
| Enum Constant and Description |
|---|
City
Enumeration : City
|
CompanyName
Enumeration : CompanyName
|
Exact
Enumeration : Exact
|
FirstName
Enumeration : FirstName
|
LastName
Enumeration : LastName
|
Phone
Enumeration : Phone
|
Street
Enumeration : Street
|
Title
Enumeration : Title
|
Zip
Enumeration : Zip
|
| Modifier and Type | Field and Description |
|---|---|
static java.util.Map<java.lang.String,java.lang.String> |
valuesToEnums |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static MatchingMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MatchingMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchingMethod Exact
public static final MatchingMethod FirstName
public static final MatchingMethod LastName
public static final MatchingMethod CompanyName
public static final MatchingMethod Phone
public static final MatchingMethod City
public static final MatchingMethod Street
public static final MatchingMethod Zip
public static final MatchingMethod Title
public static java.util.Map<java.lang.String,java.lang.String> valuesToEnums
public static MatchingMethod[] values()
for (MatchingMethod c : MatchingMethod.values()) System.out.println(c);
public static MatchingMethod 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<MatchingMethod>Copyright © 2020. All Rights Reserved.