public enum eNotificationMessageType extends java.lang.Enum<eNotificationMessageType>
Enum Constant and Description |
---|
eJobChanged
The notification type indicates that the job has changed.
|
eJobLogChanged
The notification type indicates that the job log has changed.
|
eJobMonitoringUpdated
The notification type indicates that the message contains
job monitoring data periodically generated on the server during the job execution.
|
eJobObjectSent
The notification type indicates that the message contains
an id of a intermediate result object generated by a given job.
|
eJobProgressChanged
The notification type indicates that the job progress has changed.
|
eJobStatusChanged
The notification type indicates that the job status has changed.
|
eNotificationSystemConnect
The notification type indicates that the notification system has connected to the server
|
eNotificationSystemDisconnect
The notification type indicates that the notification system has disconnected from the server
|
eUnspecified
The notification type is unspecified.
|
Modifier and Type | Method and Description |
---|---|
static eNotificationMessageType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static eNotificationMessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final eNotificationMessageType eUnspecified
public static final eNotificationMessageType eJobChanged
public static final eNotificationMessageType eJobStatusChanged
public static final eNotificationMessageType eJobProgressChanged
public static final eNotificationMessageType eJobLogChanged
public static final eNotificationMessageType eJobMonitoringUpdated
public static final eNotificationMessageType eJobObjectSent
public static final eNotificationMessageType eNotificationSystemDisconnect
public static final eNotificationMessageType eNotificationSystemConnect
public static eNotificationMessageType[] values()
for (eNotificationMessageType c : eNotificationMessageType.values()) System.out.println(c);
public static eNotificationMessageType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null