public static enum Persistence.Status extends Enum<Persistence.Status>
| Enum Constant and Description |
|---|
STARTED |
STARTING |
STOPPED |
STOPPING |
| Modifier and Type | Method and Description |
|---|---|
static Persistence.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Persistence.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Persistence.Status STARTING
public static final Persistence.Status STARTED
public static final Persistence.Status STOPPING
public static final Persistence.Status STOPPED
public static Persistence.Status[] values()
for (Persistence.Status c : Persistence.Status.values()) System.out.println(c);
public static Persistence.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 © 2022 MANYDESIGNS s.r.l.. All rights reserved.