public static enum DocumentEventEntity.Status extends Enum<DocumentEventEntity.Status>
| Enum Constant and Description |
|---|
failed
Something went wrong trying to construct a document for this event
|
merged
Merged into another event
|
processing
Being processed (transient state)
|
published
Indicates this document event's associated document has successfully been published
|
superseded
Superseded by a duplicate event
|
unprocessed
Initial state
|
| Modifier and Type | Method and Description |
|---|---|
static DocumentEventEntity.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentEventEntity.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentEventEntity.Status unprocessed
public static final DocumentEventEntity.Status processing
public static final DocumentEventEntity.Status published
public static final DocumentEventEntity.Status superseded
public static final DocumentEventEntity.Status merged
public static final DocumentEventEntity.Status failed
public static DocumentEventEntity.Status[] values()
for (DocumentEventEntity.Status c : DocumentEventEntity.Status.values()) System.out.println(c);
public static DocumentEventEntity.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 © 2017. All rights reserved.