public static enum ConnectionController.Sate extends Enum<ConnectionController.Sate>
| Enum Constant and Description |
|---|
OK |
REACH_MAX_CONNECTION |
REACH_MAX_CONNECTION_PER_IP |
| Modifier and Type | Method and Description |
|---|---|
static ConnectionController.Sate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnectionController.Sate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectionController.Sate OK
public static final ConnectionController.Sate REACH_MAX_CONNECTION_PER_IP
public static final ConnectionController.Sate REACH_MAX_CONNECTION
public static ConnectionController.Sate[] values()
for (ConnectionController.Sate c : ConnectionController.Sate.values()) System.out.println(c);
public static ConnectionController.Sate 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 © 2017–2022 Apache Software Foundation. All rights reserved.