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


Java LongHashIndex类代码示例

本文整理汇总了Java中org.pentaho.di.core.hash.LongHashIndex的典型用法代码示例。如果您正苦于以下问题:Java LongHashIndex类的具体用法?Java LongHashIndex怎么用?Java LongHashIndex使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


LongHashIndex类属于org.pentaho.di.core.hash包,在下文中一共展示了LongHashIndex类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: StreamLookupData

import org.pentaho.di.core.hash.LongHashIndex; //导入依赖的package包/类
public StreamLookupData()
{
       super();
       look = new HashMap<RowMetaAndData, Object[]>();
       hashIndex = null;
       longIndex = new LongHashIndex();
       list = new ArrayList<KeyValue>();
       metadataVerifiedIntegerPair=false;
       hasLookupRows=false;
       
       comparator = new Comparator<KeyValue>()
       {
           public int compare(KeyValue k1, KeyValue k2)
           {
               try
               {
                   return keyMeta.compare(k1.getKey(), k2.getKey());
               }
               catch(KettleValueException e)
               {
                   LogWriter.getInstance().logError("Stream Lookup comparator", e.getMessage());
                   return 0;
               }
           }
       };
}
 
开发者ID:icholy,项目名称:geokettle-2.0,代码行数:27,代码来源:StreamLookupData.java

示例2: StreamLookupData

import org.pentaho.di.core.hash.LongHashIndex; //导入依赖的package包/类
public StreamLookupData()
{
       super();
       look = new HashMap<RowMetaAndData, Object[]>();
       hashIndex = null;
       longIndex = new LongHashIndex();
       list = new ArrayList<KeyValue>();
       metadataVerifiedIntegerPair=false;
       hasLookupRows=false;
       
       comparator = new Comparator<KeyValue>()
       {
           public int compare(KeyValue k1, KeyValue k2)
           {
               try
               {
                   return keyMeta.compare(k1.getKey(), k2.getKey());
               }
               catch(KettleValueException e)
               {
                   throw new RuntimeException("Stream Lookup comparator error", e);
               }
           }
       };
}
 
开发者ID:yintaoxue,项目名称:read-open-source-code,代码行数:26,代码来源:StreamLookupData.java

示例3: VertexLookupData

import org.pentaho.di.core.hash.LongHashIndex; //导入依赖的package包/类
public VertexLookupData() {
  super();
  look = new HashMap<RowMetaAndData, Object[]>();
  hashIndex = null;
  longIndex = new LongHashIndex();
  hasLookupRows = false;

  comparator = new Comparator<KeyValue>() {
    public int compare( KeyValue k1, KeyValue k2 ) {
      try {
        return keyMeta.compare( k1.getKey(), k2.getKey() );
      } catch ( KettleValueException e ) {
        throw new RuntimeException( "Stream Lookup comparator error", e );
      }
    }
  };
}
 
开发者ID:mattyb149,项目名称:pdi-graph-computing,代码行数:18,代码来源:VertexLookupData.java

示例4: StreamLookupData

import org.pentaho.di.core.hash.LongHashIndex; //导入依赖的package包/类
public StreamLookupData() {
  super();
  look = new HashMap<RowMetaAndData, Object[]>();
  hashIndex = null;
  longIndex = new LongHashIndex();
  list = new ArrayList<KeyValue>();
  metadataVerifiedIntegerPair = false;
  hasLookupRows = false;

  comparator = new Comparator<KeyValue>() {
    public int compare( KeyValue k1, KeyValue k2 ) {
      try {
        return cacheKeyMeta.compare( k1.getKey(), k2.getKey() );
      } catch ( KettleValueException e ) {
        throw new RuntimeException( "Stream Lookup comparator error", e );
      }
    }
  };
}
 
开发者ID:pentaho,项目名称:pentaho-kettle,代码行数:20,代码来源:StreamLookupData.java


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