public static enum JpaUpdaterProvider.Status extends Enum<JpaUpdaterProvider.Status>
Enum Constant and Description |
---|
EMPTY
No database exists.
|
OUTDATED
Database needs to be updated
|
VALID
Database is valid and up to date
|
Modifier and Type | Method and Description |
---|---|
static JpaUpdaterProvider.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JpaUpdaterProvider.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JpaUpdaterProvider.Status VALID
public static final JpaUpdaterProvider.Status EMPTY
public static final JpaUpdaterProvider.Status OUTDATED
public static JpaUpdaterProvider.Status[] values()
for (JpaUpdaterProvider.Status c : JpaUpdaterProvider.Status.values()) System.out.println(c);
public static JpaUpdaterProvider.Status 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 © 2021 JBoss by Red Hat. All rights reserved.