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