public enum EnumOverlayOrImageMagnification extends java.lang.Enum<EnumOverlayOrImageMagnification>
| Enum Constant and Description |
|---|
IMAGE_TO_BE_MAGNIFIED
The IMAG e_ t o_ b e_ magnified.
|
OVERLAY_TO_BE_MAGNIFIED
The OVERLA y_ t o_ b e_ magnified.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumOverlayOrImageMagnification |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumOverlayOrImageMagnification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumOverlayOrImageMagnification IMAGE_TO_BE_MAGNIFIED
public static final EnumOverlayOrImageMagnification OVERLAY_TO_BE_MAGNIFIED
public static EnumOverlayOrImageMagnification[] values()
for (EnumOverlayOrImageMagnification c : EnumOverlayOrImageMagnification.values()) System.out.println(c);
public static EnumOverlayOrImageMagnification 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()