public static enum ResultSet.ResultSetScalarTypes extends Enum<ResultSet.ResultSetScalarTypes>
Enum Constant and Description |
---|
PROPERTY_BOOLEAN |
PROPERTY_DOUBLE |
PROPERTY_INTEGER |
PROPERTY_NULL |
PROPERTY_STRING |
PROPERTY_UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static ResultSet.ResultSetScalarTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResultSet.ResultSetScalarTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultSet.ResultSetScalarTypes PROPERTY_UNKNOWN
public static final ResultSet.ResultSetScalarTypes PROPERTY_NULL
public static final ResultSet.ResultSetScalarTypes PROPERTY_STRING
public static final ResultSet.ResultSetScalarTypes PROPERTY_INTEGER
public static final ResultSet.ResultSetScalarTypes PROPERTY_BOOLEAN
public static final ResultSet.ResultSetScalarTypes PROPERTY_DOUBLE
public static ResultSet.ResultSetScalarTypes[] values()
for (ResultSet.ResultSetScalarTypes c : ResultSet.ResultSetScalarTypes.values()) System.out.println(c);
public static ResultSet.ResultSetScalarTypes 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 © 2019 RedisLabs. All rights reserved.