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