public enum SpecElementType extends java.lang.Enum<SpecElementType>
Enum Constant and Description |
---|
JAVA_CLASS |
KOTLIN_CLASS |
KOTLIN_SINGLETON |
Modifier and Type | Method and Description |
---|---|
static SpecElementType |
valueOf(java.lang.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 final SpecElementType KOTLIN_CLASS
public static SpecElementType[] values()
for (SpecElementType c : SpecElementType.values()) System.out.println(c);
public static SpecElementType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null