public static enum ClientFailoverEvent.FailoverEvent extends java.lang.Enum<ClientFailoverEvent.FailoverEvent>
Enum Constant and Description |
---|
ABORT
Client Failover was aborted
|
BEGIN
Client Failover has begun
|
END
Client Failover has completed successfully
|
ERROR
Client Failover failed
|
REAUTH
Client Failover needs to be reauthorized
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static ClientFailoverEvent.FailoverEvent |
valueOf(int ei) |
static ClientFailoverEvent.FailoverEvent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClientFailoverEvent.FailoverEvent[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final ClientFailoverEvent.FailoverEvent BEGIN
public static final ClientFailoverEvent.FailoverEvent END
public static final ClientFailoverEvent.FailoverEvent ABORT
public static final ClientFailoverEvent.FailoverEvent REAUTH
public static final ClientFailoverEvent.FailoverEvent ERROR
public static ClientFailoverEvent.FailoverEvent[] values()
for (ClientFailoverEvent.FailoverEvent c : ClientFailoverEvent.FailoverEvent.values()) System.out.println(c);
public static ClientFailoverEvent.FailoverEvent 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 nullpublic static ClientFailoverEvent.FailoverEvent valueOf(int ei)
public java.lang.String toString()
toString
in class java.lang.Enum<ClientFailoverEvent.FailoverEvent>