public static enum Output.Kind extends java.lang.Enum<Output.Kind>
Output.Kind
enum describes the type of the output.Enum Constant and Description |
---|
COMMENT
Single-line comment
|
COMMENT_INLINE
In-line comment
|
COMMENT_ML_BODY
Body of a multiline comment
|
COMMENT_ML_END
End of a multiline comment
|
COMMENT_ML_START
Start of a multiline comment
|
TEXT
Text message
|
TRACE
Message to the simulator log
|
Modifier and Type | Method and Description |
---|---|
static Output.Kind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Output.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Output.Kind TEXT
public static final Output.Kind TRACE
public static final Output.Kind COMMENT
public static final Output.Kind COMMENT_INLINE
public static final Output.Kind COMMENT_ML_START
public static final Output.Kind COMMENT_ML_BODY
public static final Output.Kind COMMENT_ML_END
public static Output.Kind[] values()
for (Output.Kind c : Output.Kind.values()) System.out.println(c);
public static Output.Kind 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 namejava.lang.NullPointerException
- if the argument is null