public static enum GeneratorStrategy.Mode extends Enum<GeneratorStrategy.Mode>
| Enum Constant and Description |
|---|
DAO
The dao mode.
|
DEFAULT
The default mode.
|
DOMAIN
The domain mode.
|
ENUM
The enum mode.
|
INTERFACE
the interface mode.
|
POJO
The pojo mode.
|
RECORD
The record mode.
|
| Modifier and Type | Method and Description |
|---|---|
static GeneratorStrategy.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeneratorStrategy.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeneratorStrategy.Mode DEFAULT
Definition's meta
type is being rendered.public static final GeneratorStrategy.Mode RECORD
TableDefinition or a
UDTDefinition's record class is being rendered.public static final GeneratorStrategy.Mode POJO
TableDefinition's pojo
class is being renderedpublic static final GeneratorStrategy.Mode INTERFACE
TableDefinition's
interface is being renderedpublic static final GeneratorStrategy.Mode DAO
TableDefinition's dao class
is being renderedpublic static final GeneratorStrategy.Mode ENUM
EnumDefinition's class is
being renderedpublic static final GeneratorStrategy.Mode DOMAIN
DomainDefinition's class
is being renderedpublic static GeneratorStrategy.Mode[] values()
for (GeneratorStrategy.Mode c : GeneratorStrategy.Mode.values()) System.out.println(c);
public static GeneratorStrategy.Mode 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 nullCopyright © 2018. All rights reserved.