public enum ConversionState extends java.lang.Enum<ConversionState>
| Enum Constant and Description | 
|---|
| DIGITAL_EDITDigital content, suitable for edition (normalized font size, expanded graphics). | 
| DIGITAL_PUBLISHDigital content, suitable for publication (adaptive font size, fitted graphics). | 
| HANDWRITINGHandwritten content (ink). | 
| Modifier and Type | Method and Description | 
|---|---|
| static ConversionState | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static ConversionState[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ConversionState HANDWRITING
public static final ConversionState DIGITAL_PUBLISH
public static final ConversionState DIGITAL_EDIT
public static ConversionState[] values()
for (ConversionState c : ConversionState.values()) System.out.println(c);
public static ConversionState 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