Package org.cip4.lib.xjdf.schema
Enum MediaType
- java.lang.Object
-
- java.lang.Enum<MediaType>
-
- org.cip4.lib.xjdf.schema.MediaType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<MediaType>
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v4.0.1", date="2022-12-20T17:59:47Z") public enum MediaType extends java.lang.Enum<MediaType>Java class for MediaType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MediaType"> <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> <enumeration value="Blanket"/> <enumeration value="CorrugatedBoard"/> <enumeration value="Disc"/> <enumeration value="EmbossingFoil"/> <enumeration value="Film"/> <enumeration value="Foil"/> <enumeration value="GravureCylinder"/> <enumeration value="ImagingCylinder"/> <enumeration value="LaminatingFoil"/> <enumeration value="MountingTape"/> <enumeration value="Other"/> <enumeration value="Paper"/> <enumeration value="Plate"/> <enumeration value="Screen"/> <enumeration value="SelfAdhesive"/> <enumeration value="ShrinkFoil"/> <enumeration value="Sleeve"/> <enumeration value="Textile"/> <enumeration value="Transparency"/> <enumeration value="Vinyl"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLANKETCORRUGATED_BOARDDISCEMBOSSING_FOILFILMFOILGRAVURE_CYLINDERIMAGING_CYLINDERLAMINATING_FOILMOUNTING_TAPEOTHERPAPERPLATESCREENSELF_ADHESIVESHRINK_FOILSLEEVETEXTILETRANSPARENCYVINYL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MediaTypefromValue(java.lang.String v)java.lang.Stringvalue()static MediaTypevalueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
BLANKET
public static final MediaType BLANKET
-
CORRUGATED_BOARD
public static final MediaType CORRUGATED_BOARD
-
DISC
public static final MediaType DISC
-
EMBOSSING_FOIL
public static final MediaType EMBOSSING_FOIL
-
FILM
public static final MediaType FILM
-
FOIL
public static final MediaType FOIL
-
GRAVURE_CYLINDER
public static final MediaType GRAVURE_CYLINDER
-
IMAGING_CYLINDER
public static final MediaType IMAGING_CYLINDER
-
LAMINATING_FOIL
public static final MediaType LAMINATING_FOIL
-
MOUNTING_TAPE
public static final MediaType MOUNTING_TAPE
-
OTHER
public static final MediaType OTHER
-
PAPER
public static final MediaType PAPER
-
PLATE
public static final MediaType PLATE
-
SCREEN
public static final MediaType SCREEN
-
SELF_ADHESIVE
public static final MediaType SELF_ADHESIVE
-
SHRINK_FOIL
public static final MediaType SHRINK_FOIL
-
SLEEVE
public static final MediaType SLEEVE
-
TEXTILE
public static final MediaType TEXTILE
-
TRANSPARENCY
public static final MediaType TRANSPARENCY
-
VINYL
public static final MediaType VINYL
-
-
Method Detail
-
values
public static MediaType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MediaType c : MediaType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MediaType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
value
public java.lang.String value()
-
fromValue
public static MediaType fromValue(java.lang.String v)
-
-