Enum FCApiEndpoint
- java.lang.Object
-
- java.lang.Enum<FCApiEndpoint>
-
- com.fullcontact.apilib.models.enums.FCApiEndpoint
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FCApiEndpoint>
public enum FCApiEndpoint extends java.lang.Enum<FCApiEndpoint>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FCApiEndpointvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FCApiEndpoint[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PERSON_ENRICH
public static final FCApiEndpoint PERSON_ENRICH
-
COMPANY_ENRICH
public static final FCApiEndpoint COMPANY_ENRICH
-
IDENTITY_MAP
public static final FCApiEndpoint IDENTITY_MAP
-
IDENTITY_RESOLVE
public static final FCApiEndpoint IDENTITY_RESOLVE
-
IDENTITY_RESOLVE_WITH_TAGS
public static final FCApiEndpoint IDENTITY_RESOLVE_WITH_TAGS
-
IDENTITY_DELETE
public static final FCApiEndpoint IDENTITY_DELETE
-
IDENTITY_MAP_RESOLVE
public static final FCApiEndpoint IDENTITY_MAP_RESOLVE
-
TAGS_CREATE
public static final FCApiEndpoint TAGS_CREATE
-
TAGS_GET
public static final FCApiEndpoint TAGS_GET
-
TAGS_DELETE
public static final FCApiEndpoint TAGS_DELETE
-
AUDIENCE_CREATE
public static final FCApiEndpoint AUDIENCE_CREATE
-
AUDIENCE_DOWNLOAD
public static final FCApiEndpoint AUDIENCE_DOWNLOAD
-
PERMISSION_CREATE
public static final FCApiEndpoint PERMISSION_CREATE
-
PERMISSION_DELETE
public static final FCApiEndpoint PERMISSION_DELETE
-
PERMISSION_FIND
public static final FCApiEndpoint PERMISSION_FIND
-
PERMISSION_CURRENT
public static final FCApiEndpoint PERMISSION_CURRENT
-
PERMISSION_VERIFY
public static final FCApiEndpoint PERMISSION_VERIFY
-
VERIFY_SIGNALS
public static final FCApiEndpoint VERIFY_SIGNALS
-
VERIFY_MATCH
public static final FCApiEndpoint VERIFY_MATCH
-
VERIFY_ACTIVITY
public static final FCApiEndpoint VERIFY_ACTIVITY
-
-
Method Detail
-
values
public static FCApiEndpoint[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FCApiEndpoint c : FCApiEndpoint.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FCApiEndpoint valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-