public static enum SingleLineView.Line.Kind extends Enum<SingleLineView.Line.Kind>
| Modifier and Type | Method and Description |
|---|---|
static SingleLineView.Line.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SingleLineView.Line.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SingleLineView.Line.Kind EQUAL
public static final SingleLineView.Line.Kind INSERT
public static final SingleLineView.Line.Kind DELETE
public static final SingleLineView.Line.Kind SKIPPING
public static SingleLineView.Line.Kind[] values()
for (SingleLineView.Line.Kind c : SingleLineView.Line.Kind.values()) System.out.println(c);
public static SingleLineView.Line.Kind 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 © 2016–2020. All rights reserved.