public static enum ConnectionGroup.Type extends Enum<ConnectionGroup.Type>
Enum Constant and Description |
---|
BALANCING
A connection group that acts as a load balancer.
|
ORGANIZATIONAL
A connection group that purely organizes other connections or
connection groups, serving only as a container.
|
Modifier and Type | Method and Description |
---|---|
static ConnectionGroup.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnectionGroup.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectionGroup.Type ORGANIZATIONAL
public static final ConnectionGroup.Type BALANCING
public static ConnectionGroup.Type[] values()
for (ConnectionGroup.Type c : ConnectionGroup.Type.values()) System.out.println(c);
public static ConnectionGroup.Type 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. All rights reserved.