public static enum WME.Kind extends Enum<WME.Kind>
| Enum Constant and Description |
|---|
BUILT_IN |
DIFF_FROM |
EDGE |
SAME_AS |
TYPE |
| Modifier and Type | Method and Description |
|---|---|
static WME.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WME.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WME.Kind TYPE
public static final WME.Kind EDGE
public static final WME.Kind SAME_AS
public static final WME.Kind DIFF_FROM
public static final WME.Kind BUILT_IN
public static WME.Kind[] values()
for (WME.Kind c : WME.Kind.values()) System.out.println(c);
public static WME.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 © 2019. All rights reserved.