|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Quality>
org.alembik.schema.mts.v1_0.Quality
public enum Quality
Java class for Quality.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="Quality"> <restriction base="{http://www.w3.org/2001/XMLSchema}int"> <enumeration value="3"/> <enumeration value="2"/> <enumeration value="1"/> <enumeration value="0"/> </restriction> </simpleType>
Enum Constant Summary | |
---|---|
ANY
|
|
HIGH
|
|
LOW
|
|
MEDIUM
|
Method Summary | |
---|---|
static Quality |
fromValue(int v)
|
int |
value()
|
static Quality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Quality[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Quality HIGH
public static final Quality MEDIUM
public static final Quality LOW
public static final Quality ANY
Method Detail |
---|
public static final Quality[] values()
for(Quality c : Quality.values()) System.out.println(c);
public static Quality 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 namepublic int value()
public static Quality fromValue(int v)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |