當前位置: 首頁>>代碼示例>>Java>>正文


Java ByteArrayConverter.fromByteArray方法代碼示例

本文整理匯總了Java中org.hypergraphdb.storage.ByteArrayConverter.fromByteArray方法的典型用法代碼示例。如果您正苦於以下問題:Java ByteArrayConverter.fromByteArray方法的具體用法?Java ByteArrayConverter.fromByteArray怎麽用?Java ByteArrayConverter.fromByteArray使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.hypergraphdb.storage.ByteArrayConverter的用法示例。


在下文中一共展示了ByteArrayConverter.fromByteArray方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: IndexResultSet

import org.hypergraphdb.storage.ByteArrayConverter; //導入方法依賴的package包/類
/**
 * <p>Construct a result set matching a specific key.</p>
 * 
 * @param cursor
 * @param key
 */
public IndexResultSet(LmdbTxCursor cursor, DatabaseEntry keyIn, ByteArrayConverter<T> converter)
{
	checkArgNotNull(cursor, "cursor");
	
  this.converter = converter;
  this.cursor = cursor;
  this.key = new DatabaseEntry();
  this.data = new DatabaseEntry();
  if (keyIn != null)
  	assignData(this.key, keyIn.getData());

  try
 {
     cursor.cursor().get(CursorOp.GET_CURRENT, key, data);
     next = converter.fromByteArray(data.getData(), 0, data.getData().length);
     lookahead = 1;
 }
 catch (Throwable t)
 {
     throw new HGException(t);
 }
}
 
開發者ID:hypergraphdb,項目名稱:hypergraphdb,代碼行數:29,代碼來源:IndexResultSet.java

示例2: SingleValueResultSet

import org.hypergraphdb.storage.ByteArrayConverter; //導入方法依賴的package包/類
public SingleValueResultSet(LmdbTxCursor cursor, DatabaseEntry keyIn,
		ByteArrayConverter<T> converter)
{
	this.converter = converter;
	this.cursor = cursor;
	this.key = new DatabaseEntry();
	this.data = new DatabaseEntry();
	if (keyIn != null)
		assignData(key, keyIn.getData());
	try
	{
		((SecondaryCursor) cursor.cursor()).get(CursorOp.GET_CURRENT, key,
				pkey, data);
		next = converter.fromByteArray(pkey.getData(), 0, pkey.getData().length);
		lookahead = 1;
	}
	catch (Throwable t)
	{
		throw new HGException(t);
	}

}
 
開發者ID:hypergraphdb,項目名稱:hypergraphdb,代碼行數:23,代碼來源:SingleValueResultSet.java

示例3: KeyScanResultSet

import org.hypergraphdb.storage.ByteArrayConverter; //導入方法依賴的package包/類
public KeyScanResultSet(LmdbTxCursor cursor, DatabaseEntry keyIn, ByteArrayConverter<T> converter)
{
    this.converter = converter;
    this.cursor = cursor;
    this.key = new DatabaseEntry();
    this.data = new DatabaseEntry();

    if (keyIn != null)
    	assignData(key, keyIn.getData());
  try
  {
      cursor.cursor().get(CursorOp.GET_CURRENT, key, data);
      next = converter.fromByteArray(key.getData(), 0, key.getData().length);
      lookahead = 1;
  }
  catch (Throwable t)
  {
      throw new HGException(t);
  }         
}
 
開發者ID:hypergraphdb,項目名稱:hypergraphdb,代碼行數:21,代碼來源:KeyScanResultSet.java

示例4: IndexResultSet

import org.hypergraphdb.storage.ByteArrayConverter; //導入方法依賴的package包/類
/**
 * <p>
 * Construct a result set matching a specific key.
 * </p>
 * 
 * @param cursor
 * @param key
 */
public IndexResultSet(BJETxCursor cursor, DatabaseEntry keyIn, ByteArrayConverter<T> converter) {
	/*
	 * id = idcounter++; System.out.println("Constructing index set with id " + id); StackTraceElement
	 * e[]=Thread.currentThread().getStackTrace(); for (int i=0; i <e.length; i++) { System.out.println(e[i]);
	 * }
	 */
	this.converter = converter;
	this.cursor = cursor;
	this.key = new DatabaseEntry();
	
	if (keyIn != null) {
		assignData(this.key, keyIn.getData());
	}
	
	try {
		cursor.cursor().getCurrent(key, data, LockMode.DEFAULT);
		next = converter.fromByteArray(data.getData(), data.getOffset(), data.getSize());
		lookahead = 1;
	}
	catch (Throwable t) {
		throw new HGException(t);
	}
}
 
開發者ID:hypergraphdb,項目名稱:hypergraphdb,代碼行數:32,代碼來源:IndexResultSet.java

示例5: SingleValueResultSet

import org.hypergraphdb.storage.ByteArrayConverter; //導入方法依賴的package包/類
public SingleValueResultSet(BJETxCursor cursor, DatabaseEntry keyIn, ByteArrayConverter<T> converter) {
	//
	// The following is bit hacky because we want to avoid some of the default behavior
	// of the super constructor, which is incorrect when the "values" we are interested in 
	// are the DB's primary keys. So we duplicate its bebavior and override instantiation
	// of the current value.
	this.converter = converter;
	this.cursor = cursor;
	this.key = new DatabaseEntry();
	if (keyIn != null) {
		assignData(key, keyIn.getData());
	}
	
	try {
		((SecondaryCursor)cursor.cursor()).getCurrent(key, pkey, data, LockMode.DEFAULT);
		next = converter.fromByteArray(pkey.getData(), pkey.getOffset(), pkey.getSize());
		lookahead = 1;
	}
	catch (Throwable t) {
		throw new HGException(t);
	}

}
 
開發者ID:hypergraphdb,項目名稱:hypergraphdb,代碼行數:24,代碼來源:SingleValueResultSet.java

示例6: KeyScanResultSet

import org.hypergraphdb.storage.ByteArrayConverter; //導入方法依賴的package包/類
public KeyScanResultSet(BJETxCursor cursor, DatabaseEntry keyIn, ByteArrayConverter<T> converter) {
	this.converter = converter;
	this.cursor = cursor;
	this.key = new DatabaseEntry();
	
	if (keyIn != null) {
		assignData(key, keyIn.getData());
	}
	
	try {
		cursor.cursor().getCurrent(key, data, LockMode.DEFAULT);
		next = converter.fromByteArray(key.getData(), key.getOffset(), key.getSize());
		lookahead = 1;
	}
	catch (Throwable t) {
		throw new HGException(t);
	}
}
 
開發者ID:hypergraphdb,項目名稱:hypergraphdb,代碼行數:19,代碼來源:KeyScanResultSet.java

示例7: KeyScanResultSet

import org.hypergraphdb.storage.ByteArrayConverter; //導入方法依賴的package包/類
public KeyScanResultSet(BDBTxCursor cursor, DatabaseEntry keyIn, ByteArrayConverter<T> converter)
{
    this.converter = converter;
    this.cursor = cursor;
    this.key = new DatabaseEntry();
    this.data = new DatabaseEntry();
    // TODO: for fixed size key and data,we should actually reuse the buffers, but
    // this has to be passed somehow as a configuration parameter to the HGIndex
    // implementation and down to result sets. It's a worthwhile optimization.
    this.key.setReuseBuffer(false);
    this.data.setReuseBuffer(false);

    if (keyIn != null)
    	assignData(key, keyIn.getData());
 try
 {
     cursor.cursor().getCurrent(key, data, LockMode.DEFAULT);
     next = converter.fromByteArray(key.getData(), key.getOffset(), key.getSize());
     lookahead = 1;
 }
 catch (Throwable t)
 {
     throw new HGException(t);
 }         
}
 
開發者ID:hypergraphdb,項目名稱:hypergraphdb,代碼行數:26,代碼來源:KeyScanResultSet.java

示例8: IndexResultSet

import org.hypergraphdb.storage.ByteArrayConverter; //導入方法依賴的package包/類
/**
     * <p>Construct a result set matching a specific key.</p>
     * 
     * @param cursor
     * @param key
     */
    public IndexResultSet(BDBTxCursor cursor, DatabaseEntry keyIn, ByteArrayConverter<T> converter)
    {
/*        id = idcounter++;
        System.out.println("Constructing index set with id " + id);
        StackTraceElement e[]=Thread.currentThread().getStackTrace();
        for (int i=0; i <e.length; i++) {
             System.out.println(e[i]);
            } */
        this.converter = converter;
        this.cursor = cursor;
        this.key = new DatabaseEntry();
        this.data = new DatabaseEntry();
        // TODO: for fixed size key and data,we should actually reuse the buffers, but
        // this has to be passed somehow as a configuration parameter to the HGIndex
        // implementation and down to result sets. It's a worthwhile optimization.
        this.key.setReuseBuffer(false);
        this.data.setReuseBuffer(false);
        if (keyIn != null)
        	assignData(this.key, keyIn.getData());
	    try
	    {
	        cursor.cursor().getCurrent(key, data, LockMode.DEFAULT);
	        next = converter.fromByteArray(data.getData(), data.getOffset(), data.getSize());
	        lookahead = 1;
	    }
	    catch (Throwable t)
	    {
	        throw new HGException(t);
	    }
    }
 
開發者ID:hypergraphdb,項目名稱:hypergraphdb,代碼行數:37,代碼來源:IndexResultSet.java

示例9: SingleValueResultSet

import org.hypergraphdb.storage.ByteArrayConverter; //導入方法依賴的package包/類
public SingleValueResultSet(BDBTxCursor cursor, DatabaseEntry keyIn, ByteArrayConverter<T> converter)
{
    //
	// The following is bit hacky because we want to avoid some of the default behavior
	// of the super constructor, which is incorrect when the "values" we are interested in 
	// are the DB's primary keys. So we duplicate its behavior and override instantiation
	// of the current value.
    this.converter = converter;
    this.cursor = cursor;
    this.key = new DatabaseEntry();
    this.data = new DatabaseEntry();
    // TODO: for fixed size key and data,we should actually reuse the buffers, but
    // this has to be passed somehow as a configuration parameter to the HGIndex
    // implementation and down to result sets. It's a worthwhile optimization.
    this.key.setReuseBuffer(false);
    this.data.setReuseBuffer(false);
    if (keyIn != null)
    	assignData(key, keyIn.getData());        
 try
 {
     ((SecondaryCursor)cursor.cursor()).getCurrent(key, pkey, data, LockMode.DEFAULT);
     next = converter.fromByteArray(pkey.getData(), pkey.getOffset(), pkey.getSize());
     lookahead = 1;
 }
 catch (Throwable t)
 {
     throw new HGException(t);
 }       
    
}
 
開發者ID:hypergraphdb,項目名稱:hypergraphdb,代碼行數:31,代碼來源:SingleValueResultSet.java


注:本文中的org.hypergraphdb.storage.ByteArrayConverter.fromByteArray方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。