public enum EnumConversionType extends java.lang.Enum<EnumConversionType>
| Enum Constant and Description |
|---|
DIGITAL_INTERFACE
The DIGITAL_INTERFACE.
|
DIGITIZED_FILM
The DIGITIZED_FILM.
|
DIGITIZED_VIDEO
The DIGITIZED_VIDEO.
|
DRAWING
The DRAWING.
|
SCANNED_DOCUMENT
The SCANNED_ DOCUMENT.
|
SCANNED_IMAGE
The SCANNED_IMAGE.
|
SYNTHETIC_IMAGE
The SYNTHETIC_IMAGE.
|
WORKSTATION
The WORKSTATION.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Gets the value.
|
static EnumConversionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumConversionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumConversionType DIGITIZED_VIDEO
public static final EnumConversionType DIGITAL_INTERFACE
public static final EnumConversionType DIGITIZED_FILM
public static final EnumConversionType WORKSTATION
public static final EnumConversionType SCANNED_DOCUMENT
public static final EnumConversionType SCANNED_IMAGE
public static final EnumConversionType DRAWING
public static final EnumConversionType SYNTHETIC_IMAGE
public static EnumConversionType[] values()
for (EnumConversionType c : EnumConversionType.values()) System.out.println(c);
public static EnumConversionType 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 nullpublic java.lang.String getValue()