net.codescore.exe
Enum StreamWriter.OutputMode
java.lang.Object
java.lang.Enum<StreamWriter.OutputMode>
net.codescore.exe.StreamWriter.OutputMode
- All Implemented Interfaces:
- Serializable, Comparable<StreamWriter.OutputMode>
- Enclosing class:
- StreamWriter
public static enum StreamWriter.OutputMode
- extends Enum<StreamWriter.OutputMode>
CompileErr
public static final StreamWriter.OutputMode CompileErr
CompileOut
public static final StreamWriter.OutputMode CompileOut
ExeErr
public static final StreamWriter.OutputMode ExeErr
ExeOut
public static final StreamWriter.OutputMode ExeOut
values
public static StreamWriter.OutputMode[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (StreamWriter.OutputMode c : StreamWriter.OutputMode.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static StreamWriter.OutputMode valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright 2008 © Adam Cornett, Andrew Conner All Rights Reserved.