public enum MatchingMethod extends 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 Map<String,String> |
valuesToEnums |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static MatchingMethod |
valueOf(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 MatchingMethod[] values()
for (MatchingMethod c : MatchingMethod.values()) System.out.println(c);
public static MatchingMethod 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<MatchingMethod>Copyright © 2015. All Rights Reserved.