public enum ObjectClassType extends Enum<ObjectClassType>
ObjectClassType = "ABSTRACT" / "STRUCTURAL" / "AUXILIARY"
Enum Constant and Description |
---|
ABSTRACT
abstract.
|
AUXILIARY
auxiliary.
|
STRUCTURAL
structural.
|
Modifier and Type | Method and Description |
---|---|
static ObjectClassType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectClassType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectClassType ABSTRACT
public static final ObjectClassType STRUCTURAL
public static final ObjectClassType AUXILIARY
public static ObjectClassType[] values()
for (ObjectClassType c : ObjectClassType.values()) System.out.println(c);
public static ObjectClassType 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 © 2003-2019 Virginia Tech. All Rights Reserved.