|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||
java.lang.Objectjava.lang.Enum<GeneratorStrategy.Mode>
org.jooq.util.GeneratorStrategy.Mode
public static enum GeneratorStrategy.Mode
The "mode" by which an artefact should be named
| Enum Constant Summary | |
|---|---|
DEFAULT
The default mode. |
|
ENUM
The enum mode. |
|
FACTORY
The factory mode. |
|
POJO
The pojo mode. |
|
RECORD
The record mode. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
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 rendered
public static final GeneratorStrategy.Mode ENUM
EnumDefinition's class
is being rendered
public static final GeneratorStrategy.Mode FACTORY
SchemaDefinition's
factory class is being rendered
| Method Detail |
|---|
public 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 name
NullPointerException - if the argument is null
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||