public static enum CommentInfo.StartConnection extends Enum<CommentInfo.StartConnection>
| Enum Constant and Description |
|---|
AFTER_PREVIOUS |
DIRECT_AFTER_PREVIOUS |
ON_NEXT_LINE |
START_OF_LINE |
| Modifier and Type | Method and Description |
|---|---|
static CommentInfo.StartConnection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommentInfo.StartConnection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommentInfo.StartConnection START_OF_LINE
public static final CommentInfo.StartConnection ON_NEXT_LINE
public static final CommentInfo.StartConnection DIRECT_AFTER_PREVIOUS
public static final CommentInfo.StartConnection AFTER_PREVIOUS
public static CommentInfo.StartConnection[] values()
for (CommentInfo.StartConnection c : CommentInfo.StartConnection.values()) System.out.println(c);
public static CommentInfo.StartConnection 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 The Project Lombok Authors, licensed under the MIT licence.