|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<TrueFalseAuto> net.sf.magicproject.token.TrueFalseAuto
public enum TrueFalseAuto
Enum Constant Summary | |
---|---|
AUTO
|
|
FALSE
|
|
TRUE
|
Method Summary | |
---|---|
static TrueFalseAuto |
deserialize(java.io.InputStream input)
Read and return the enum from the given inputstream. |
boolean |
getValue()
The associated boolean value. |
void |
serialize(java.io.OutputStream out)
Write this enum to the given outputstream. |
static TrueFalseAuto |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TrueFalseAuto |
valueOfXsd(java.lang.String xsdName)
Return null of enum value corresponding to the given Xsd name. |
static TrueFalseAuto[] |
values()
Returns an array containing the constants of this enum type, in the order they are 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 TrueFalseAuto TRUE
public static final TrueFalseAuto FALSE
public static final TrueFalseAuto AUTO
Method Detail |
---|
public static TrueFalseAuto[] values()
for (TrueFalseAuto c : TrueFalseAuto.values()) System.out.println(c);
public static TrueFalseAuto 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 name
java.lang.NullPointerException
- if the argument is nullpublic static TrueFalseAuto valueOfXsd(java.lang.String xsdName)
xsdName
- the Xsd name of this Aabstract value.
public void serialize(java.io.OutputStream out) throws java.io.IOException
out
- the stream ths enum would be written.
java.io.IOException
- If some other I/O error occurspublic static TrueFalseAuto deserialize(java.io.InputStream input) throws java.io.IOException
input
- the stream containing the enum to read.
java.io.IOException
- If some other I/O error occurspublic boolean getValue()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |