1 8 9 package com.sleepycat.bind.tuple; 10 11 import com.sleepycat.je.DatabaseEntry; 12 13 28 public class ShortBinding extends TupleBinding { 29 30 private static final int SHORT_SIZE = 2; 31 32 public Object entryToObject(TupleInput input) { 34 35 return new Short (input.readShort()); 36 } 37 38 public void objectToEntry(Object object, TupleOutput output) { 40 41 output.writeShort(((Number ) object).shortValue()); 42 } 43 44 protected TupleOutput getTupleOutput(Object object) { 46 47 return sizedOutput(); 48 } 49 50 57 public static short entryToShort(DatabaseEntry entry) { 58 59 return entryToInput(entry).readShort(); 60 } 61 62 69 public static void shortToEntry(short val, DatabaseEntry entry) { 70 71 outputToEntry(sizedOutput().writeShort(val), entry); 72 } 73 74 78 private static TupleOutput sizedOutput() { 79 80 return new TupleOutput(new byte[SHORT_SIZE]); 81 } 82 } 83 | Popular Tags |