public enum TsonCommentType extends Enum<TsonCommentType>
| Enum Constant and Description |
|---|
MULTI_LINE |
SINGLE_LINE |
| Modifier and Type | Method and Description |
|---|---|
static TsonCommentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TsonCommentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TsonCommentType SINGLE_LINE
public static final TsonCommentType MULTI_LINE
public static TsonCommentType[] values()
for (TsonCommentType c : TsonCommentType.values()) System.out.println(c);
public static TsonCommentType 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 © 2024 vpc open source initiative. All rights reserved.