public enum ConnectionMode extends Enum<ConnectionMode>
Enum Constant and Description |
---|
FULL
Block all requests before starting the init sequence.
|
IN_PROGRESS
The state in which the connection manager is trying to establish a connection
|
OFF
Init sequence completed, requests will not block
|
PARTIAL
Do not block requests until the init sequence completes.
|
Modifier and Type | Method and Description |
---|---|
static ConnectionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectionMode FULL
public static final ConnectionMode PARTIAL
public static final ConnectionMode OFF
public static final ConnectionMode IN_PROGRESS
public static ConnectionMode[] values()
for (ConnectionMode c : ConnectionMode.values()) System.out.println(c);
public static ConnectionMode 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 © 2025 Picodata. All rights reserved.