public enum KotlinFeatureRegistry extends java.lang.Enum<KotlinFeatureRegistry> implements LampBuilderVisitor<CommandActor>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
static KotlinFeatureRegistry |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KotlinFeatureRegistry[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
void |
visit(Lamp.Builder<CommandActor> builder)
Visits the given builder
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfnothingpublic static final KotlinFeatureRegistry INSTANCE
public static KotlinFeatureRegistry[] values()
for (KotlinFeatureRegistry c : KotlinFeatureRegistry.values()) System.out.println(c);
public static KotlinFeatureRegistry 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 nullpublic void visit(Lamp.Builder<CommandActor> builder)
LampBuilderVisitorvisit in interface LampBuilderVisitor<CommandActor>builder - Builder to visit.