public enum EnumComponentType extends Enum<EnumComponentType>
Java class for EnumComponentType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EnumComponentType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Block"/>
<enumeration value="Other"/>
<enumeration value="Ribbon"/>
<enumeration value="Sheet"/>
<enumeration value="Web"/>
<enumeration value="FinalProduct"/>
<enumeration value="PartialProduct"/>
<enumeration value="Proof"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BLOCK |
FINAL_PRODUCT |
OTHER |
PARTIAL_PRODUCT |
PROOF |
RIBBON |
SHEET |
WEB |
| Modifier and Type | Method and Description |
|---|---|
static EnumComponentType |
fromValue(String v) |
String |
value() |
static EnumComponentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumComponentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumComponentType BLOCK
public static final EnumComponentType OTHER
public static final EnumComponentType RIBBON
public static final EnumComponentType SHEET
public static final EnumComponentType WEB
public static final EnumComponentType FINAL_PRODUCT
public static final EnumComponentType PARTIAL_PRODUCT
public static final EnumComponentType PROOF
public static EnumComponentType[] values()
for (EnumComponentType c : EnumComponentType.values()) System.out.println(c);
public static EnumComponentType 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 value()
public static EnumComponentType fromValue(String v)
Copyright © 2012. All Rights Reserved.