public class TimestampType extends TemporalType<java.util.Date>
AbstractType.ComparisonTypeAssignmentTestable.TestResult| Modifier and Type | Field and Description |
|---|---|
static TimestampType |
instance |
comparatorSet, comparisonType, isByteOrderComparable, reverseComparator| Modifier and Type | Method and Description |
|---|---|
CQL3Type |
asCQL3Type() |
<VL,VR> int |
compareCustom(VL left,
ValueAccessor<VL> accessorL,
VR right,
ValueAccessor<VR> accessorR)
Implement IFF ComparisonType is CUSTOM
Compares the byte representation of two instances of this class,
for types where this cannot be done by simple in-order comparison of the
unsigned bytes
Standard Java compare semantics
|
Term |
fromJSONObject(java.lang.Object parsed)
Given a parsed JSON string, return a byte representation of the object.
|
java.nio.ByteBuffer |
fromString(java.lang.String source)
get a byte representation of the given string.
|
java.nio.ByteBuffer |
fromTimeInMillis(long millis)
Returns the temporal value corresponding to the specified UNIX timestamp.
|
TypeSerializer<java.util.Date> |
getSerializer() |
boolean |
isCompatibleWith(AbstractType<?> previous)
Returns true if this comparator is compatible with the provided
previous comparator, that is if previous can safely be replaced by this.
|
boolean |
isEmptyValueMeaningless()
|
boolean |
isValueCompatibleWithInternal(AbstractType<?> otherType)
Needed to handle ReversedType in value-compatibility checks.
|
java.lang.String |
toJSONString(java.nio.ByteBuffer buffer,
ProtocolVersion protocolVersion)
Converts the specified value into its JSON representation.
|
long |
toTimeInMillis(java.nio.ByteBuffer value)
Converts this temporal in UNIX timestamp.
|
protected void |
validateDuration(Duration duration)
Validates that the duration has the correct precision.
|
int |
valueLengthIfFixed()
The length of values for this type if all values are of fixed length, -1 otherwise.
|
addDuration, now, substractDurationasCQLTypeStringList, checkComparable, compare, compare, compareCollectionMembers, compareForCQL, compose, compose, decompose, expandUserTypes, freeze, freezeNestedMulticellTypes, getComponents, getString, getString, getString, isCollection, isCounter, isFreezable, isFrozenCollection, isMultiCell, isReversed, isTuple, isUDT, isValueCompatibleWith, parseDefaultParameters, read, readArray, readBuffer, readBuffer, referencesDuration, referencesUserType, referencesUserType, skipValue, subTypes, testAssignment, testAssignment, toJSONString, toString, toString, validate, validate, validateCellValue, validateCollectionMember, withUpdatedUserType, writeValue, writeValue, writtenLength, writtenLengthpublic static final TimestampType instance
public boolean isEmptyValueMeaningless()
AbstractTypeisEmptyValueMeaningless in class AbstractType<java.util.Date>public <VL,VR> int compareCustom(VL left,
ValueAccessor<VL> accessorL,
VR right,
ValueAccessor<VR> accessorR)
AbstractTypecompareCustom in class AbstractType<java.util.Date>public java.nio.ByteBuffer fromString(java.lang.String source)
throws MarshalException
AbstractTypefromString in class AbstractType<java.util.Date>MarshalExceptionpublic java.nio.ByteBuffer fromTimeInMillis(long millis)
throws MarshalException
TemporalTypefromTimeInMillis in class TemporalType<java.util.Date>millis - the UNIX timestamp to convertMarshalExceptionpublic long toTimeInMillis(java.nio.ByteBuffer value)
TemporalTypetoTimeInMillis in class TemporalType<java.util.Date>value - the temporal value.public Term fromJSONObject(java.lang.Object parsed) throws MarshalException
AbstractTypefromJSONObject in class AbstractType<java.util.Date>parsed - the result of parsing a json stringMarshalExceptionpublic java.lang.String toJSONString(java.nio.ByteBuffer buffer,
ProtocolVersion protocolVersion)
AbstractTypeThe buffer position will stay the same.
toJSONString in class AbstractType<java.util.Date>buffer - the value to convertprotocolVersion - the protocol version to use for the conversionpublic boolean isCompatibleWith(AbstractType<?> previous)
AbstractTypeisCompatibleWith in class AbstractType<java.util.Date>public boolean isValueCompatibleWithInternal(AbstractType<?> otherType)
AbstractTypeisValueCompatibleWithInternal in class AbstractType<java.util.Date>public CQL3Type asCQL3Type()
asCQL3Type in class AbstractType<java.util.Date>public TypeSerializer<java.util.Date> getSerializer()
getSerializer in class AbstractType<java.util.Date>public int valueLengthIfFixed()
AbstractTypevalueLengthIfFixed in class AbstractType<java.util.Date>protected void validateDuration(Duration duration)
TemporalTypevalidateDuration in class TemporalType<java.util.Date>duration - the duration to validate.Copyright © 2009-2020 The Apache Software Foundation