Package io.tarantool.driver.protocol
Enum TarantoolResponseType
- java.lang.Object
-
- java.lang.Enum<TarantoolResponseType>
-
- io.tarantool.driver.protocol.TarantoolResponseType
-
- All Implemented Interfaces:
Serializable
,Comparable<TarantoolResponseType>
public enum TarantoolResponseType extends Enum<TarantoolResponseType>
Incapsulates the type codes of a Tarantool response
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IPROTO_NOT_OK
IPROTO_OK
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TarantoolResponseType
fromCode(long code)
static TarantoolResponseType
valueOf(String name)
Returns the enum constant of this type with the specified name.static TarantoolResponseType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IPROTO_OK
public static final TarantoolResponseType IPROTO_OK
-
IPROTO_NOT_OK
public static final TarantoolResponseType IPROTO_NOT_OK
-
-
Method Detail
-
values
public static TarantoolResponseType[] 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 (TarantoolResponseType c : TarantoolResponseType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TarantoolResponseType 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
-
fromCode
public static TarantoolResponseType fromCode(long code) throws TarantoolProtocolException
- Throws:
TarantoolProtocolException
-
-