public enum JPATableGenerationStrategy extends Enum<JPATableGenerationStrategy>
| Enum Constant and Description |
|---|
CREATE |
CREATE_OR_EXTEND |
DROP_AND_CREATE |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static JPATableGenerationStrategy |
fromString(String value) |
String |
getValue() |
static JPATableGenerationStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JPATableGenerationStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JPATableGenerationStrategy CREATE
public static final JPATableGenerationStrategy CREATE_OR_EXTEND
public static final JPATableGenerationStrategy DROP_AND_CREATE
public static final JPATableGenerationStrategy NONE
public static JPATableGenerationStrategy[] values()
for (JPATableGenerationStrategy c : JPATableGenerationStrategy.values()) System.out.println(c);
public static JPATableGenerationStrategy 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 String getValue()
public static JPATableGenerationStrategy fromString(String value)
Copyright © 2022 Apache Software Foundation. All rights reserved.