public enum EnumMediumType extends java.lang.Enum<EnumMediumType>
| Enum Constant and Description |
|---|
BLUE_FILM
The BLU e_ film.
|
CLEAR_FILM
The CLEA r_ film.
|
MAMMO_BLUE_FILM
The MAMM o_ blu e_ film.
|
MAMMO_CLEAR_FILM
The MAMM o_ clea r_ film.
|
PAPER
The PAPER.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumMediumType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumMediumType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumMediumType PAPER
public static final EnumMediumType CLEAR_FILM
public static final EnumMediumType BLUE_FILM
public static final EnumMediumType MAMMO_CLEAR_FILM
public static final EnumMediumType MAMMO_BLUE_FILM
public static EnumMediumType[] values()
for (EnumMediumType c : EnumMediumType.values()) System.out.println(c);
public static EnumMediumType 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()