public enum ClassifierType extends Enum<ClassifierType>
| Enum Constant and Description |
|---|
ABSTRACT
abstract.
|
ABSTRACT_STATIC
abstract static.
|
NONE
none.
|
STATIC
static.
|
| Modifier and Type | Method and Description |
|---|---|
static ClassifierType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClassifierType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassifierType NONE
public static final ClassifierType STATIC
public static final ClassifierType ABSTRACT
public static final ClassifierType ABSTRACT_STATIC
public static ClassifierType[] values()
for (ClassifierType c : ClassifierType.values()) System.out.println(c);
public static ClassifierType 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 © 2020. All rights reserved.