Class DurationType

java.lang.Object
org.apache.cassandra.db.marshal.AbstractType<Duration>
org.apache.cassandra.db.marshal.DurationType
All Implemented Interfaces:
Comparator<ByteBuffer>, AssignmentTestable

public class DurationType extends AbstractType<Duration>
Represents a duration. The duration is stored as months, days, and nanoseconds. This is done

Internally he duration is stored as months (unsigned integer), days (unsigned integer), and nanoseconds.