public enum EnumCoatings extends java.lang.Enum<EnumCoatings>
Java class for EnumCoatings.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EnumCoatings">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="None"/>
<enumeration value="Coated"/>
<enumeration value="Glossy"/>
<enumeration value="HighGloss"/>
<enumeration value="InkJet"/>
<enumeration value="Matte"/>
<enumeration value="Polymer"/>
<enumeration value="Silver"/>
<enumeration value="Satin"/>
<enumeration value="Semigloss"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
COATED |
GLOSSY |
HIGH_GLOSS |
INK_JET |
MATTE |
NONE |
POLYMER |
SATIN |
SEMIGLOSS |
SILVER |
| Modifier and Type | Method and Description |
|---|---|
static EnumCoatings |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static EnumCoatings |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCoatings[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCoatings NONE
public static final EnumCoatings COATED
public static final EnumCoatings GLOSSY
public static final EnumCoatings HIGH_GLOSS
public static final EnumCoatings INK_JET
public static final EnumCoatings MATTE
public static final EnumCoatings POLYMER
public static final EnumCoatings SILVER
public static final EnumCoatings SATIN
public static final EnumCoatings SEMIGLOSS
public static EnumCoatings[] values()
for (EnumCoatings c : EnumCoatings.values()) System.out.println(c);
public static EnumCoatings 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 value()
public static EnumCoatings fromValue(java.lang.String v)
Copyright © 2012. All Rights Reserved.