public enum GeneratorEnum extends Enum<GeneratorEnum>
| Enum Constant and Description |
|---|
CONTROLLER |
DTO |
ENTITY |
MAPPER_JAVA |
MAPPER_JAVA_IMPL |
MAPPER_XML |
SERVICE |
SERVICE_IMPL |
| Modifier and Type | Method and Description |
|---|---|
static GeneratorEnum |
valueOf(Generator generator) |
static GeneratorEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeneratorEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeneratorEnum ENTITY
public static final GeneratorEnum MAPPER_XML
public static final GeneratorEnum MAPPER_JAVA
public static final GeneratorEnum MAPPER_JAVA_IMPL
public static final GeneratorEnum SERVICE
public static final GeneratorEnum SERVICE_IMPL
public static final GeneratorEnum DTO
public static final GeneratorEnum CONTROLLER
public static GeneratorEnum[] values()
for (GeneratorEnum c : GeneratorEnum.values()) System.out.println(c);
public static GeneratorEnum 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 nullpublic static GeneratorEnum valueOf(Generator generator)
Copyright © 2021. All rights reserved.