Enum TarantoolConnectionSelectionStrategyType
- java.lang.Object
-
- java.lang.Enum<TarantoolConnectionSelectionStrategyType>
-
- io.tarantool.driver.api.connection.TarantoolConnectionSelectionStrategyType
-
- All Implemented Interfaces:
Serializable
,Comparable<TarantoolConnectionSelectionStrategyType>
public enum TarantoolConnectionSelectionStrategyType extends Enum<TarantoolConnectionSelectionStrategyType>
Enumeration of the default types of connection selection strategies.Provides shortcuts for the built-in connection selection strategy factory types.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PARALLEL_ROUND_ROBIN
ROUND_ROBIN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ConnectionSelectionStrategyFactory
value()
Value of enumstatic TarantoolConnectionSelectionStrategyType
valueOf(String name)
Returns the enum constant of this type with the specified name.static TarantoolConnectionSelectionStrategyType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ROUND_ROBIN
public static final TarantoolConnectionSelectionStrategyType ROUND_ROBIN
-
PARALLEL_ROUND_ROBIN
public static final TarantoolConnectionSelectionStrategyType PARALLEL_ROUND_ROBIN
-
-
Method Detail
-
values
public static TarantoolConnectionSelectionStrategyType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TarantoolConnectionSelectionStrategyType c : TarantoolConnectionSelectionStrategyType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TarantoolConnectionSelectionStrategyType valueOf(String name)
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
-
value
public ConnectionSelectionStrategyFactory value()
Value of enum- Returns:
ConnectionSelectionStrategyFactory
-
-