public static enum GComment.Type extends java.lang.Enum<GComment.Type>
Enum Constant and Description |
---|
JavaDoc
JavaDoc conform multi-line comment.
|
Multiline
Set of lines in between slash star and star slash.
|
SingleLine
Set of lines starting with double slash.
|
Unspecified
Unspecified.
|
Modifier and Type | Method and Description |
---|---|
static GComment.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GComment.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GComment.Type SingleLine
public static final GComment.Type Multiline
public static final GComment.Type JavaDoc
public static final GComment.Type Unspecified
public static GComment.Type[] values()
for (GComment.Type c : GComment.Type.values()) System.out.println(c);
public static GComment.Type 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