Package com.mparticle
Enum SdkListener.Endpoint
- java.lang.Object
-
- java.lang.Enum<SdkListener.Endpoint>
-
- com.mparticle.SdkListener.Endpoint
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SdkListener.Endpoint>
- Enclosing class:
- SdkListener
public static enum SdkListener.Endpoint extends java.lang.Enum<SdkListener.Endpoint>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONFIG
EVENTS
IDENTITY_ALIAS
IDENTITY_IDENTIFY
IDENTITY_LOGIN
IDENTITY_LOGOUT
IDENTITY_MODIFY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SdkListener.Endpoint
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SdkListener.Endpoint[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IDENTITY_LOGIN
public static final SdkListener.Endpoint IDENTITY_LOGIN
-
IDENTITY_LOGOUT
public static final SdkListener.Endpoint IDENTITY_LOGOUT
-
IDENTITY_IDENTIFY
public static final SdkListener.Endpoint IDENTITY_IDENTIFY
-
IDENTITY_MODIFY
public static final SdkListener.Endpoint IDENTITY_MODIFY
-
IDENTITY_ALIAS
public static final SdkListener.Endpoint IDENTITY_ALIAS
-
EVENTS
public static final SdkListener.Endpoint EVENTS
-
CONFIG
public static final SdkListener.Endpoint CONFIG
-
-
Method Detail
-
values
public static SdkListener.Endpoint[] 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 (SdkListener.Endpoint c : SdkListener.Endpoint.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SdkListener.Endpoint 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
-
-