public enum PublishingEvent extends Enum<PublishingEvent>
Enum Constant and Description |
---|
documentPublicationApproved |
documentPublicationRejected |
documentPublished |
documentSubmittedForPublication |
documentUnpublished |
documentWaitingPublication |
Modifier and Type | Method and Description |
---|---|
static PublishingEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PublishingEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PublishingEvent documentPublished
public static final PublishingEvent documentSubmittedForPublication
public static final PublishingEvent documentPublicationRejected
public static final PublishingEvent documentPublicationApproved
public static final PublishingEvent documentWaitingPublication
public static final PublishingEvent documentUnpublished
public static PublishingEvent[] values()
for (PublishingEvent c : PublishingEvent.values()) System.out.println(c);
public static PublishingEvent 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 © 2018 Nuxeo. All rights reserved.