Enum GComment.Type
- java.lang.Object
-
- java.lang.Enum<GComment.Type>
-
- org.cakelab.blender.generator.utils.GComment.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GComment.Type>
- Enclosing class:
- GComment
public static enum GComment.Type extends java.lang.Enum<GComment.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant 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.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
SingleLine
public static final GComment.Type SingleLine
Set of lines starting with double slash.
-
Multiline
public static final GComment.Type Multiline
Set of lines in between slash star and star slash.
-
JavaDoc
public static final GComment.Type JavaDoc
JavaDoc conform multi-line comment.
-
Unspecified
public static final GComment.Type Unspecified
Unspecified. Comment is handled like a simple code section.
-
-
Method Detail
-
values
public static GComment.Type[] 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 (GComment.Type c : GComment.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GComment.Type valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-