public enum DeviceAddressType extends Enum<DeviceAddressType>
| Enum Constant and Description |
|---|
DEFAULT_REFERENCE
This type is for in memory DeviceAddress objects that contain a
reference of a default device address.
|
IDM
This type is for device addresses that are stored in a remote
Identiy Management (i.e.
|
UCP
This type is for device addresses that are stored in User
Communication Preference Service (UCP) repository.
|
| Modifier and Type | Method and Description |
|---|---|
static DeviceAddressType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeviceAddressType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviceAddressType UCP
public static final DeviceAddressType IDM
public static final DeviceAddressType DEFAULT_REFERENCE
public static DeviceAddressType[] values()
for (DeviceAddressType c : DeviceAddressType.values()) System.out.println(c);
public static DeviceAddressType 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 nullCopyright © 2009,2013 Oracle and/or its affiliates. All rights reserved.