当前位置: 首页>>代码示例>>Java>>正文


Java TimeUUIDType.instance方法代码示例

本文整理汇总了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));
    }
}
 
开发者ID:scylladb,项目名称:scylla-tools-java,代码行数:27,代码来源:UDHelperTest.java

示例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);
}
 
开发者ID:scylladb,项目名称:scylla-tools-java,代码行数:17,代码来源:MergeIteratorComparisonTest.java

示例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));
}
 
开发者ID:graben1437,项目名称:titan1withtp3.1,代码行数:16,代码来源:UUIDTest.java

示例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;
}
 
开发者ID:vcostet,项目名称:cassandra-kmean,代码行数:7,代码来源:TimeUUIDs.java


注:本文中的org.apache.cassandra.db.marshal.TimeUUIDType.instance方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。