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