org.apache.cassandra.db.marshal
Class IntegerType

java.lang.Object
  extended by org.apache.cassandra.db.marshal.AbstractType<java.math.BigInteger>
      extended by org.apache.cassandra.db.marshal.IntegerType
All Implemented Interfaces:
java.util.Comparator<java.nio.ByteBuffer>

public final class IntegerType
extends AbstractType<java.math.BigInteger>


Field Summary
static IntegerType instance
           
 
Fields inherited from class org.apache.cassandra.db.marshal.AbstractType
columnComparator, columnReverseComparator, indexComparator, indexReverseComparator, reverseComparator
 
Method Summary
 int compare(java.nio.ByteBuffer lhs, java.nio.ByteBuffer rhs)
           
 java.math.BigInteger compose(java.nio.ByteBuffer bytes)
           
 java.nio.ByteBuffer decompose(java.math.BigInteger value)
           
 java.nio.ByteBuffer fromString(java.lang.String source)
          get a byte representation of the given string.
 int getJdbcType()
           
 int getPrecision(java.math.BigInteger obj)
           
 int getScale(java.math.BigInteger obj)
           
 java.lang.String getString(java.nio.ByteBuffer bytes)
          get a string representation of the bytes suitable for log messages
 java.lang.Class<java.math.BigInteger> getType()
          returns the class this AbstractType represents.
 boolean isCaseSensitive()
           
 boolean isCurrency()
           
 boolean isSigned()
           
 boolean needsQuotes()
           
 java.lang.String toString(java.math.BigInteger bi)
          get a string representation of a particular type.
 void validate(java.nio.ByteBuffer bytes)
           
 
Methods inherited from class org.apache.cassandra.db.marshal.AbstractType
getColumnsString, getReverseComparator, getString, isCommutative
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface java.util.Comparator
equals
 

Field Detail

instance

public static final IntegerType instance
Method Detail

compose

public java.math.BigInteger compose(java.nio.ByteBuffer bytes)
Specified by:
compose in class AbstractType<java.math.BigInteger>

decompose

public java.nio.ByteBuffer decompose(java.math.BigInteger value)
Specified by:
decompose in class AbstractType<java.math.BigInteger>

compare

public int compare(java.nio.ByteBuffer lhs,
                   java.nio.ByteBuffer rhs)

getString

public java.lang.String getString(java.nio.ByteBuffer bytes)
Description copied from class: AbstractType
get a string representation of the bytes suitable for log messages

Specified by:
getString in class AbstractType<java.math.BigInteger>

toString

public java.lang.String toString(java.math.BigInteger bi)
Description copied from class: AbstractType
get a string representation of a particular type.

Specified by:
toString in class AbstractType<java.math.BigInteger>

fromString

public java.nio.ByteBuffer fromString(java.lang.String source)
                               throws MarshalException
Description copied from class: AbstractType
get a byte representation of the given string. defaults to unsupportedoperation so people deploying custom Types can update at their leisure.

Overrides:
fromString in class AbstractType<java.math.BigInteger>
Throws:
MarshalException

validate

public void validate(java.nio.ByteBuffer bytes)
              throws MarshalException
Specified by:
validate in class AbstractType<java.math.BigInteger>
Throws:
MarshalException

getType

public java.lang.Class<java.math.BigInteger> getType()
Description copied from class: AbstractType
returns the class this AbstractType represents.

Specified by:
getType in class AbstractType<java.math.BigInteger>

isSigned

public boolean isSigned()
Specified by:
isSigned in class AbstractType<java.math.BigInteger>

isCaseSensitive

public boolean isCaseSensitive()
Specified by:
isCaseSensitive in class AbstractType<java.math.BigInteger>

isCurrency

public boolean isCurrency()
Specified by:
isCurrency in class AbstractType<java.math.BigInteger>

getPrecision

public int getPrecision(java.math.BigInteger obj)
Specified by:
getPrecision in class AbstractType<java.math.BigInteger>

getScale

public int getScale(java.math.BigInteger obj)
Specified by:
getScale in class AbstractType<java.math.BigInteger>

getJdbcType

public int getJdbcType()
Specified by:
getJdbcType in class AbstractType<java.math.BigInteger>

needsQuotes

public boolean needsQuotes()
Specified by:
needsQuotes in class AbstractType<java.math.BigInteger>


Copyright © 2011 The Apache Software Foundation