public enum SessionActivationNotificationCause extends Enum<SessionActivationNotificationCause>
| Enum Constant and Description |
|---|
ACTIVATION
The session is being activated.
|
FAILAWAY
Session has failed over and is no longer active on the local node.
|
FAILOVER
Session has failed over and is now in use on the local node.
|
PASSIVATION
The session is being passivated.
|
REPLICATION
The session is being replicated.
|
| Modifier and Type | Method and Description |
|---|---|
static SessionActivationNotificationCause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SessionActivationNotificationCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SessionActivationNotificationCause FAILOVER
public static final SessionActivationNotificationCause FAILAWAY
public static final SessionActivationNotificationCause PASSIVATION
public static final SessionActivationNotificationCause ACTIVATION
public static final SessionActivationNotificationCause REPLICATION
public static SessionActivationNotificationCause[] values()
for (SessionActivationNotificationCause c : SessionActivationNotificationCause.values()) System.out.println(c);
public static SessionActivationNotificationCause 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 © 2016. All Rights Reserved.