public static enum Comment.EnumFilter extends Enum<Comment.EnumFilter>
| Enum Constant and Description |
|---|
VALUE_STREAM |
VALUE_TOPLEVEL |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Comment.EnumFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Comment.EnumFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Comment.EnumFilter VALUE_STREAM
public static final Comment.EnumFilter VALUE_TOPLEVEL
public static Comment.EnumFilter[] values()
for (Comment.EnumFilter c : Comment.EnumFilter.values()) System.out.println(c);
public static Comment.EnumFilter 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 nullpublic String toString()
toString in class Enum<Comment.EnumFilter>Copyright © 2020. All rights reserved.