|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<OutputMode>
com.darwinsys.sql.OutputMode
public enum OutputMode
The set of all valid modes. Short, lowercase names were used for simple use in \mX where X is one of the names.
Enum Constant Summary | |
---|---|
h
Mode for HTML output |
|
j
Mode for JTable |
|
s
Mode for SQL output |
|
t
Mode for Text |
|
x
Mode for XML output |
Method Summary | |
---|---|
java.lang.String |
toString()
|
static OutputMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static OutputMode[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final OutputMode t
public static final OutputMode h
public static final OutputMode s
public static final OutputMode x
public static final OutputMode j
Method Detail |
---|
public static final OutputMode[] values()
for(OutputMode c : OutputMode.values()) System.out.println(c);
public static OutputMode 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 java.lang.String toString()
toString
in class java.lang.Enum<OutputMode>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |