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