org.apache.cassandra.db.marshal
Class DecimalType
java.lang.Object
org.apache.cassandra.db.marshal.AbstractType<java.math.BigDecimal>
org.apache.cassandra.db.marshal.DecimalType
- All Implemented Interfaces:
- java.util.Comparator<java.nio.ByteBuffer>
public class DecimalType
- extends AbstractType<java.math.BigDecimal>
Method Summary |
int |
compare(java.nio.ByteBuffer bb0,
java.nio.ByteBuffer bb1)
|
java.math.BigDecimal |
compose(java.nio.ByteBuffer bytes)
|
java.nio.ByteBuffer |
decompose(java.math.BigDecimal value)
The bytes of the ByteBuffer are made up of 4 bytes of int containing the scale
followed by the n bytes it takes to store a BigInteger. |
java.nio.ByteBuffer |
fromString(java.lang.String source)
get a byte representation of the given string. |
java.lang.String |
getString(java.nio.ByteBuffer bytes)
get a string representation of the bytes suitable for log messages |
void |
validate(java.nio.ByteBuffer bytes)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.Comparator |
equals |
instance
public static final DecimalType instance
compare
public int compare(java.nio.ByteBuffer bb0,
java.nio.ByteBuffer bb1)
compose
public java.math.BigDecimal compose(java.nio.ByteBuffer bytes)
- Specified by:
compose
in class AbstractType<java.math.BigDecimal>
decompose
public java.nio.ByteBuffer decompose(java.math.BigDecimal value)
- The bytes of the ByteBuffer are made up of 4 bytes of int containing the scale
followed by the n bytes it takes to store a BigInteger.
- Specified by:
decompose
in class AbstractType<java.math.BigDecimal>
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.BigDecimal>
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.BigDecimal>
- Throws:
MarshalException
validate
public void validate(java.nio.ByteBuffer bytes)
throws MarshalException
- Specified by:
validate
in class AbstractType<java.math.BigDecimal>
- Throws:
MarshalException
Copyright © 2012 The Apache Software Foundation