public enum RegistrationAttributes extends java.lang.Enum<RegistrationAttributes>
Enum Constant and Description |
---|
APPLICATION_IDENTIFIER
The bundler identifier of the application.
|
DEVICE_IDENTIFIER
The uniquely identifier of the device to the app's vendor.
|
DEVICE_NAME
The name of the device.
|
DEVICE_TYPE
The type of the device.
|
FINGERPRINT_ENROLLED
The flag to indicate the Fingerprint Manager has been enrolled.
|
FINGERPRINT_SUPPORT
The flag to indicate if the device supports Fingerprint Manager.
|
FRONTCAMERA_SUPPORT
The flag to indicate if the device has a front facing camera.
|
OS_VERSION
The version number of the operation system.
|
PUSH_NOTIFICATION_IDENTIFIER
The unique identifier of the device for supporting push notification.
|
TENANT_IDENTIFIER
A client generated unique identifier to represent the tenant.
|
Modifier and Type | Method and Description |
---|---|
static java.util.HashMap<java.lang.String,java.lang.Object> |
getAllAttributeValues(android.content.Context context) |
static java.lang.Object |
getAttributeValue(android.content.Context context,
RegistrationAttributes attribute) |
java.lang.String |
toString()
Returns the value of the Enum.
|
static RegistrationAttributes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RegistrationAttributes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegistrationAttributes DEVICE_IDENTIFIER
public static final RegistrationAttributes DEVICE_NAME
public static final RegistrationAttributes DEVICE_TYPE
public static final RegistrationAttributes OS_VERSION
public static final RegistrationAttributes FINGERPRINT_SUPPORT
public static final RegistrationAttributes FINGERPRINT_ENROLLED
public static final RegistrationAttributes FRONTCAMERA_SUPPORT
public static final RegistrationAttributes PUSH_NOTIFICATION_IDENTIFIER
public static final RegistrationAttributes APPLICATION_IDENTIFIER
public static final RegistrationAttributes TENANT_IDENTIFIER
public static RegistrationAttributes[] values()
for (RegistrationAttributes c : RegistrationAttributes.values()) System.out.println(c);
public static RegistrationAttributes 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 static java.lang.Object getAttributeValue(android.content.Context context, RegistrationAttributes attribute)
public static java.util.HashMap<java.lang.String,java.lang.Object> getAllAttributeValues(android.content.Context context)
public java.lang.String toString()
toString
in class java.lang.Enum<RegistrationAttributes>