Package org.apache.guacamole.net.auth
Enum ConnectionGroup.Type
- All Implemented Interfaces:
Serializable
,Comparable<ConnectionGroup.Type>
,java.lang.constant.Constable
- Enclosing interface:
ConnectionGroup
All legal types of connection group.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA connection group that acts as a load balancer.A connection group that purely organizes other connections or connection groups, serving only as a container. -
Method Summary
Modifier and TypeMethodDescriptionstatic ConnectionGroup.Type
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.
-
Enum Constant Details
-
ORGANIZATIONAL
A connection group that purely organizes other connections or connection groups, serving only as a container. An organizational connection group is analogous to a directory or folder in a filesystem. -
BALANCING
A connection group that acts as a load balancer. A balancing connection group can be connected to in the same manner as a connection, and will transparently route to the least-used underlying connection.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-