1 8 9 package com.sleepycat.persist.impl; 10 11 import java.math.BigInteger ; 12 13 21 public interface EntityInput { 22 23 24 27 Catalog getCatalog(); 28 29 33 boolean isRawAccess(); 34 35 39 boolean setRawAccess(boolean rawAccessParam); 40 41 46 Object readObject(); 47 48 55 Object readKeyObject(Format format); 56 57 62 void registerPriKeyObject(Object o); 63 64 68 int readArrayLength(); 69 70 73 int readEnumConstant(String [] names); 74 75 79 void skipField(Format declaredFormat); 80 81 82 83 String readString(); 84 char readChar(); 85 boolean readBoolean(); 86 byte readByte(); 87 short readShort(); 88 int readInt(); 89 long readLong(); 90 float readSortedFloat(); 91 double readSortedDouble(); 92 BigInteger readBigInteger(); 93 } 94 | Popular Tags |