public static enum CKey.Endpoint extends java.lang.Enum<CKey.Endpoint>
Enum Constant and Description |
---|
certificates
Предоставляет методы для управления сертификатами пользователя
|
data
Предоставляет методы загрузки и скачивания содержимого обрабатываемых документов
|
devices
Предоставляет методы для управления устройствами пользователя
|
history
Позволяет получить историю операций пользователя на сервисе
|
operations
Управляет операциями, требующими подтверждения пользователем
|
policy
Позволяет получить параметры взаимодействия с сервисом
|
Modifier and Type | Method and Description |
---|---|
static CKey.Endpoint |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CKey.Endpoint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CKey.Endpoint certificates
public static final CKey.Endpoint data
public static final CKey.Endpoint devices
public static final CKey.Endpoint history
public static final CKey.Endpoint operations
public static final CKey.Endpoint policy
public static CKey.Endpoint[] values()
for (CKey.Endpoint c : CKey.Endpoint.values()) System.out.println(c);
public static CKey.Endpoint 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 null