public static enum CommentInfo.EndConnection extends Enum<CommentInfo.EndConnection>
| Enum Constant and Description |
|---|
AFTER_COMMENT |
DIRECT_AFTER_COMMENT |
ON_NEXT_LINE |
| Modifier and Type | Method and Description |
|---|---|
static CommentInfo.EndConnection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommentInfo.EndConnection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommentInfo.EndConnection DIRECT_AFTER_COMMENT
public static final CommentInfo.EndConnection AFTER_COMMENT
public static final CommentInfo.EndConnection ON_NEXT_LINE
public static CommentInfo.EndConnection[] values()
for (CommentInfo.EndConnection c : CommentInfo.EndConnection.values()) System.out.println(c);
public static CommentInfo.EndConnection valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2011-2015 The Project Lombok Authors, licensed under the MIT licence.