Package org.apache.cassandra.cql3
Enum CQL3Type.Native
- java.lang.Object
-
- java.lang.Enum<CQL3Type.Native>
-
- org.apache.cassandra.cql3.CQL3Type.Native
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CQL3Type.Native>
,CQL3Type
- Enclosing interface:
- CQL3Type
public static enum CQL3Type.Native extends java.lang.Enum<CQL3Type.Native> implements CQL3Type
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.cassandra.cql3.CQL3Type
CQL3Type.Collection, CQL3Type.Custom, CQL3Type.Native, CQL3Type.Raw, CQL3Type.Tuple, CQL3Type.UserDefined
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description AbstractType<?>
getType()
java.lang.String
toCQLLiteral(java.nio.ByteBuffer buffer, ProtocolVersion version)
Delegate toTypeSerializer.toCQLLiteral(ByteBuffer)
for native types as most CQL literal representations work fine with the defaultTypeSerializer.toString(Object)
TypeSerializer.deserialize(ByteBuffer)
implementations.java.lang.String
toString()
static CQL3Type.Native
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CQL3Type.Native[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
-
Methods inherited from interface org.apache.cassandra.cql3.CQL3Type
isCollection, isUDT
-
-
-
-
Enum Constant Detail
-
ASCII
public static final CQL3Type.Native ASCII
-
BIGINT
public static final CQL3Type.Native BIGINT
-
BLOB
public static final CQL3Type.Native BLOB
-
BOOLEAN
public static final CQL3Type.Native BOOLEAN
-
COUNTER
public static final CQL3Type.Native COUNTER
-
DATE
public static final CQL3Type.Native DATE
-
DECIMAL
public static final CQL3Type.Native DECIMAL
-
DOUBLE
public static final CQL3Type.Native DOUBLE
-
DURATION
public static final CQL3Type.Native DURATION
-
EMPTY
public static final CQL3Type.Native EMPTY
-
FLOAT
public static final CQL3Type.Native FLOAT
-
INET
public static final CQL3Type.Native INET
-
INT
public static final CQL3Type.Native INT
-
SMALLINT
public static final CQL3Type.Native SMALLINT
-
TEXT
public static final CQL3Type.Native TEXT
-
TIME
public static final CQL3Type.Native TIME
-
TIMESTAMP
public static final CQL3Type.Native TIMESTAMP
-
TIMEUUID
public static final CQL3Type.Native TIMEUUID
-
TINYINT
public static final CQL3Type.Native TINYINT
-
UUID
public static final CQL3Type.Native UUID
-
VARCHAR
public static final CQL3Type.Native VARCHAR
-
VARINT
public static final CQL3Type.Native VARINT
-
-
Method Detail
-
values
public static CQL3Type.Native[] 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 (CQL3Type.Native c : CQL3Type.Native.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CQL3Type.Native valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getType
public AbstractType<?> getType()
-
toCQLLiteral
public java.lang.String toCQLLiteral(java.nio.ByteBuffer buffer, ProtocolVersion version)
Delegate toTypeSerializer.toCQLLiteral(ByteBuffer)
for native types as most CQL literal representations work fine with the defaultTypeSerializer.toString(Object)
TypeSerializer.deserialize(ByteBuffer)
implementations.- Specified by:
toCQLLiteral
in interfaceCQL3Type
- Parameters:
buffer
- the value to convert to a CQL literal. This value must be serialized withversion
of the native protocol.version
- the native protocol version in whichbuffer
is encoded.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<CQL3Type.Native>
-
-