本文整理汇总了Java中org.apache.cassandra.db.marshal.TimeUUIDType.instance方法的典型用法代码示例。如果您正苦于以下问题:Java TimeUUIDType.instance方法的具体用法?Java TimeUUIDType.instance怎么用?Java TimeUUIDType.instance使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.cassandra.db.marshal.TimeUUIDType
的用法示例。
在下文中一共展示了TimeUUIDType.instance方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testEmptiableTypes
import org.apache.cassandra.db.marshal.TimeUUIDType; //导入方法依赖的package包/类
@Test
public void testEmptiableTypes()
{
AbstractType<?>[] types = new AbstractType<?>[]{
BooleanType.instance,
CounterColumnType.instance,
DateType.instance,
DecimalType.instance,
DoubleType.instance,
FloatType.instance,
InetAddressType.instance,
Int32Type.instance,
IntegerType.instance,
LongType.instance,
TimestampType.instance,
TimeUUIDType.instance,
UUIDType.instance
};
for (AbstractType<?> type : types)
{
Assert.assertTrue(type.getClass().getSimpleName(), UDHelper.isNullOrEmpty(type, ByteBufferUtil.EMPTY_BYTE_BUFFER));
Assert.assertTrue("reversed " + type.getClass().getSimpleName(),
UDHelper.isNullOrEmpty(ReversedType.getInstance(type), ByteBufferUtil.EMPTY_BYTE_BUFFER));
}
}
示例2: testTimeUuidType
import org.apache.cassandra.db.marshal.TimeUUIDType; //导入方法依赖的package包/类
@Test
public void testTimeUuidType()
{
System.out.println("testTimeUuidType");
final AbstractType<UUID> type = TimeUUIDType.instance;
Reducer<ByteBuffer, Counted<ByteBuffer>> reducer = new Counter<ByteBuffer>();
List<List<ByteBuffer>> lists = new SimpleListGenerator<ByteBuffer>(type, ITERATOR_COUNT, LIST_LENGTH) {
@Override
public ByteBuffer next()
{
return type.decompose(UUIDGen.getTimeUUID());
}
}.result;
testMergeIterator(reducer, lists, type);
}
示例3: timeUUIDComparison
import org.apache.cassandra.db.marshal.TimeUUIDType; //导入方法依赖的package包/类
@Test
public void timeUUIDComparison() {
TimeUUIDType ti = TimeUUIDType.instance;
UUID zu = UUID.fromString(z);
UUID vu = UUID.fromString(v);
ByteBuffer zb = ti.decompose(zu);
ByteBuffer vb = ti.decompose(vu);
assertEquals(-1, ti.compare(zb, vb));
assertEquals(1, zu.compareTo(vu));
assertEquals(1, ti.compare(vb, zb));
assertEquals(-1, vu.compareTo(zu));
}
示例4: TimeUUIDs
import org.apache.cassandra.db.marshal.TimeUUIDType; //导入方法依赖的package包/类
public TimeUUIDs(String name, GeneratorConfig config)
{
super(TimeUUIDType.instance, config, name, UUID.class);
dateGen = new Dates(name, config);
clockSeqAndNode = config.salt;
}