Searched refs:Object (Results 26 - 50 of 301) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/collections/
H A DStoredMap.java216 public Object get(Object key) {
246 public Object put(Object key, Object value) {
274 public Object append(Object value) {
278 Object[] key = new Object[1];
298 public Object remov
[all...]
H A DBaseIterator.java27 boolean isCurrentData(Object currentData);
H A DStoredSortedMap.java26 * <li>{@link #headMap(Object, boolean)}</li>
27 * <li>{@link #tailMap(Object, boolean)}</li>
28 * <li>{@link #subMap(Object, boolean, Object, boolean)}</li>
176 public Object firstKey() {
190 public Object lastKey() {
195 private Object getFirstOrLastKey(boolean doGetFirst) {
230 public SortedMap headMap(Object toKey) {
252 public SortedMap headMap(Object toKey, boolean toInclusive) {
272 public SortedMap tailMap(Object fromKe
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/tuple/
H A DBooleanBinding.java33 public Object entryToObject(TupleInput input) {
39 public void objectToEntry(Object object, TupleOutput output) {
45 protected TupleOutput getTupleOutput(Object object) {
H A DByteBinding.java33 public Object entryToObject(TupleInput input) {
39 public void objectToEntry(Object object, TupleOutput output) {
45 protected TupleOutput getTupleOutput(Object object) {
H A DCharacterBinding.java33 public Object entryToObject(TupleInput input) {
39 public void objectToEntry(Object object, TupleOutput output) {
45 protected TupleOutput getTupleOutput(Object object) {
H A DDoubleBinding.java38 public Object entryToObject(TupleInput input) {
44 public void objectToEntry(Object object, TupleOutput output) {
50 protected TupleOutput getTupleOutput(Object object) {
H A DFloatBinding.java38 public Object entryToObject(TupleInput input) {
44 public void objectToEntry(Object object, TupleOutput output) {
50 protected TupleOutput getTupleOutput(Object object) {
H A DIntegerBinding.java33 public Object entryToObject(TupleInput input) {
39 public void objectToEntry(Object object, TupleOutput output) {
45 protected TupleOutput getTupleOutput(Object object) {
H A DLongBinding.java33 public Object entryToObject(TupleInput input) {
39 public void objectToEntry(Object object, TupleOutput output) {
45 protected TupleOutput getTupleOutput(Object object) {
H A DShortBinding.java33 public Object entryToObject(TupleInput input) {
39 public void objectToEntry(Object object, TupleOutput output) {
45 protected TupleOutput getTupleOutput(Object object) {
H A DSortedDoubleBinding.java44 public Object entryToObject(TupleInput input) {
50 public void objectToEntry(Object object, TupleOutput output) {
56 protected TupleOutput getTupleOutput(Object object) {
H A DSortedFloatBinding.java44 public Object entryToObject(TupleInput input) {
50 public void objectToEntry(Object object, TupleOutput output) {
56 protected TupleOutput getTupleOutput(Object object) {
H A DBigIntegerBinding.java21 public Object entryToObject(TupleInput input) {
27 public void objectToEntry(Object object, TupleOutput output) {
33 protected TupleOutput getTupleOutput(Object object) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/
H A DRawArrayInput.java23 private Object[] array;
43 Object readNext() {
44 Object o = array[index++];
H A DRawAccessor.java51 public Object newInstance() {
59 (parentFormat, new HashMap<String,Object>(), superObject);
62 public Object newArray(int len) {
66 public boolean isPriKeyFieldNullOrZero(Object o) {
68 Object val = getValue(o, priKeyField);
82 public void writePriKeyField(Object o, EntityOutput output) {
84 Object val = getValue(o, priKeyField);
94 public void readPriKeyField(Object o, EntityInput input) {
97 Object val = input.readKeyObject(format);
106 public void writeSecKeyFields(Object
[all...]
H A DPrimitiveArrayFormat.java62 Object newArray(int len) {
67 public Object newInstance(EntityInput input, boolean rawAccess) {
70 return new RawObject(this, new Object[len]);
77 public Object readObject(Object o, EntityInput input, boolean rawAccess) {
79 Object[] a = ((RawObject) o).getElements();
90 void writeObject(Object o, EntityOutput output, boolean rawAccess) {
92 Object[] a = ((RawObject) o).getElements();
103 Object convertRawObject(Catalog catalog,
109 Object
[all...]
H A DEnhancedAccessor.java97 public Object newInstance() {
105 public Object newArray(int len) {
113 public boolean isPriKeyFieldNullOrZero(Object o) {
121 public void writePriKeyField(Object o, EntityOutput output) {
129 public void readPriKeyField(Object o, EntityInput input) {
137 public void writeSecKeyFields(Object o, EntityOutput output) {
141 public void readSecKeyFields(Object o,
150 public void writeNonKeyFields(Object o, EntityOutput output) {
154 public void readNonKeyFields(Object o,
163 public Object getFiel
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/persist/test/
H A DEnhanced2.java27 public Object bdbNewInstance() {
31 public Object bdbNewArray(int len) {
75 public boolean bdbNullifyKeyField(Object o,
79 Object keyElement) {
88 public Object bdbGetField(Object o,
100 public void bdbSetField(Object o,
104 Object value) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/entity/
H A DSampleViews.java185 public Object entryToObject(Object keyInput, Object dataInput) {
196 public Object objectToKey(Object object) {
205 public Object objectToData(Object object) {
232 public Object entryToObject(Object keyInput, Object dataInpu
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/sentity/
H A DSampleViews.java46 // EntryBinding classes to bind the stored tuple entry to a key Object.
182 public Object entryToObject(TupleInput input) {
191 public void objectToEntry(Object object, TupleOutput output) {
223 public Object entryToObject(TupleInput keyInput, Object dataInput) {
234 public void objectToKey(Object object, TupleOutput output) {
244 public Object objectToData(Object object) {
265 public Object entryToObject(TupleInput input) {
274 public void objectToEntry(Object objec
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/tuple/
H A DSampleViews.java45 // the stored tuple entry to a key Object.
181 public Object entryToObject(TupleInput input) {
190 public void objectToEntry(Object object, TupleOutput output) {
214 public Object entryToObject(TupleInput keyInput, Object dataInput) {
225 public void objectToKey(Object object, TupleOutput output) {
234 public Object objectToData(Object object) {
257 public Object entryToObject(TupleInput input) {
266 public void objectToEntry(Object objec
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/serial/
H A DTupleSerialKeyCreator.java28 * <li> {@link #createSecondaryKey(TupleInput,Object,TupleOutput)} </li>
35 * <li> {@link #nullifyForeignKey(Object)} </li>
77 Object dataInput = dataBinding.entryToObject(dataEntry);
91 Object data = dataBinding.entryToObject(dataEntry);
120 Object dataInput,
139 public Object nullifyForeignKey(Object data) {
H A DTupleSerialMarshalledKeyCreator.java52 Object dataInput,
67 public Object nullifyForeignKey(Object dataInput) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/raw/
H A DRawStore.java71 public PrimaryIndex<Object,RawObject> getPrimaryIndex(String entityClass)
75 (Object.class, null, RawObject.class, entityClass);
82 public SecondaryIndex<Object,Object,RawObject>
88 Object.class, null, keyName);

Completed in 152 milliseconds

1234567891011>>