public static enum Operation.OperationDataType extends java.lang.Enum<Operation.OperationDataType>
Enum Constant and Description |
---|
other
Данные в другом формате
|
pdf
Данные содержат PDF-документ
|
utf8
Данные содержат текст в формате UTF-8
|
Modifier and Type | Method and Description |
---|---|
static Operation.OperationDataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Operation.OperationDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operation.OperationDataType pdf
public static final Operation.OperationDataType utf8
public static final Operation.OperationDataType other
public static Operation.OperationDataType[] values()
for (Operation.OperationDataType c : Operation.OperationDataType.values()) System.out.println(c);
public static Operation.OperationDataType 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