public enum MediaType extends Enum<MediaType>
| Enum Constant and Description |
|---|
BottomLaminate
Bottom Laminate.
|
Film
Film.
|
Ribbon
Ribbon.
|
TopLaminate
Top Laminate.
|
| Modifier and Type | Method and Description |
|---|---|
static MediaType |
fromString(String text)
Returns the MediaType enumeration for the specified text or null if no enumeration matches the specified text.
|
String |
getValue()
Returns the integer representation of the MediaType enumeration member.
|
static MediaType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MediaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaType Ribbon
public static final MediaType Film
public static final MediaType TopLaminate
public static final MediaType BottomLaminate
public static MediaType[] values()
for (MediaType c : MediaType.values()) System.out.println(c);
public static MediaType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic String getValue()
© 2016 ZIH Corp. All Rights Reserved.