package io.vertx.codegen.type;
import io.vertx.codegen.ModuleInfo;
import java.util.Collections;
import java.util.List;
public class EnumTypeInfo extends ClassTypeInfo {
final List<String> values;
final boolean gen;
public EnumTypeInfo(String fqcn, boolean gen, List<String> values, ModuleInfo module, boolean nullable) {
super(ClassKind.ENUM, fqcn, module, nullable, Collections.emptyList(), null);
this.gen = gen;
this.values = values;
}
public boolean isGen() {
return gen;
}
public List<String> getValues() {
return values;
}
}