com.tibco.rta
Enum RtaNotification.Status
java.lang.Object
java.lang.Enum<RtaNotification.Status>
com.tibco.rta.RtaNotification.Status
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<RtaNotification.Status>
- Enclosing interface:
- RtaNotification
public static enum RtaNotification.Status
- extends java.lang.Enum<RtaNotification.Status>
An enumeration of status messages.
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
SUCCESS
public static final RtaNotification.Status SUCCESS
FAILURE
public static final RtaNotification.Status FAILURE
SERVER_DISCONNECTED
public static final RtaNotification.Status SERVER_DISCONNECTED
SERVER_CONNECTED
public static final RtaNotification.Status SERVER_CONNECTED
EXCEPTION
public static final RtaNotification.Status EXCEPTION
values
public static RtaNotification.Status[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (RtaNotification.Status c : RtaNotification.Status.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static RtaNotification.Status valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
Copyright © 2000-2014 TIBCO Inc. All Rights Reserved.