public static enum Journal.JournalState extends Enum<Journal.JournalState>
Enum Constant and Description |
---|
LOADED
The journal is fully operational.
|
STARTED
The journal has some fields initialized and services running.
|
STOPPED |
SYNCING
When a replicating server is still not synchronized with its live.
|
SYNCING_UP_TO_DATE
Journal is being used by a replicating server which is up-to-date with its live.
|
Modifier and Type | Method and Description |
---|---|
static Journal.JournalState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Journal.JournalState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Journal.JournalState STOPPED
public static final Journal.JournalState STARTED
LOADED
.public static final Journal.JournalState SYNCING
public static final Journal.JournalState SYNCING_UP_TO_DATE
public static final Journal.JournalState LOADED
public static Journal.JournalState[] values()
for (Journal.JournalState c : Journal.JournalState.values()) System.out.println(c);
public static Journal.JournalState 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 © 2017 JBoss by Red Hat. All rights reserved.