view src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/operations/NodeOperation.java @ 81:715a9fbf02fc

remove <T> many source
author one
date Sun, 31 Aug 2014 07:46:30 +0900
parents 540a27dde42f
children 14ce7a0dedca
line wrap: on
line source

package jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.operations;

import java.nio.ByteBuffer;

import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.Command;

public interface NodeOperation
{
	public Command getCommand();
//	public <T extends TreeNode> Either<Error,T> invoke(T _target);
	
	public int getPosition();
	public String getKey();
	public ByteBuffer getValue();
}