public enum DocCommentStyle extends java.lang.Enum<DocCommentStyle>
| Enum Constant and Description |
|---|
ASTRISK_MARGIN
For Scaladoc/Javadoc style doc comments.
|
NO_MARGIN
For swift style doc comments.
|
| Modifier and Type | Method and Description |
|---|---|
static DocCommentStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DocCommentStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocCommentStyle ASTRISK_MARGIN
public static final DocCommentStyle NO_MARGIN
public static DocCommentStyle[] values()
for (DocCommentStyle c : DocCommentStyle.values()) System.out.println(c);
public static DocCommentStyle 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