Searched refs:dataInput (Results 1 - 15 of 15) sorted by relevance

/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 DMarshalledTupleEntry.java41 * @param dataInput is the input tuple.
43 void unmarshalEntry(TupleInput dataInput); argument
H A DTupleTupleMarshalledKeyCreator.java47 TupleInput dataInput,
55 binding.entryToObject(primaryKeyInput, dataInput);
61 public boolean nullifyForeignKey(TupleInput dataInput, argument
65 binding.entryToObject(null, dataInput);
46 createSecondaryKey(TupleInput primaryKeyInput, TupleInput dataInput, TupleOutput indexKeyOutput) argument
H A DTupleTupleKeyCreator.java58 TupleInput dataInput = entryToInput(dataEntry);
59 if (createSecondaryKey(primaryKeyInput, dataInput, output)) {
87 * @param dataInput is the {@link TupleInput} for the data entry.
95 TupleInput dataInput,
99 * Clears the index key in the tuple data entry. The dataInput should be
107 * @param dataInput is the {@link TupleInput} for the data entry.
114 public boolean nullifyForeignKey(TupleInput dataInput, argument
94 createSecondaryKey(TupleInput primaryKeyInput, TupleInput dataInput, TupleOutput indexKeyOutput) argument
H A DTupleTupleMarshalledBinding.java58 public Object entryToObject(TupleInput keyInput, TupleInput dataInput) { argument
70 if (dataInput != null) { // may be null if used by key extractor
71 obj.unmarshalEntry(dataInput);
H A DTupleTupleBinding.java70 * @param dataInput is the {@link TupleInput} data entry object.
75 TupleInput dataInput);
74 entryToObject(TupleInput keyInput, TupleInput dataInput) argument
/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 DTupleSerialMarshalledKeyCreator.java52 Object dataInput,
61 binding.entryToObject(primaryKeyInput, dataInput);
67 public Object nullifyForeignKey(Object dataInput) { argument
70 binding.entryToObject(null, dataInput);
72 return entity.nullifyForeignKey(keyName) ? dataInput : null;
51 createSecondaryKey(TupleInput primaryKeyInput, Object dataInput, TupleOutput indexKeyOutput) argument
H A DTupleSerialKeyCreator.java77 Object dataInput = dataBinding.entryToObject(dataEntry);
78 if (createSecondaryKey(primaryKeyInput, dataInput, output)) {
109 * @param dataInput is the deserialized data entry, or null if no data
120 Object dataInput,
119 createSecondaryKey(TupleInput primaryKeyInput, Object dataInput, TupleOutput indexKeyOutput) argument
H A DSerialSerialKeyCreator.java92 Object dataInput = dataBinding.entryToObject(dataEntry);
93 Object indexKey = createSecondaryKey(primaryKeyInput, dataInput);
H A DSerialSerialBinding.java93 * @param dataInput is the deserialized data object.
97 public abstract Object entryToObject(Object keyInput, Object dataInput); argument
H A DTupleSerialBinding.java90 * @param dataInput is the deserialized data entry object.
95 Object dataInput);
94 entryToObject(TupleInput keyInput, Object dataInput) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/bind/tuple/test/
H A DMarshalledObject.java78 public void unmarshalEntry(TupleInput dataInput) { argument
80 data = dataInput.readString();
81 indexKey1 = dataInput.readString();
82 indexKey2 = dataInput.readString();
/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 DPersistEntityBinding.java81 RecordInput dataInput = new RecordInput
84 int formatId = dataInput.readPackedInt();
87 Object entity = reader.newInstance(dataInput, rawAccess);
89 return reader.readObject(entity, dataInput, rawAccess);
/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) { argument
188 PartData data = (PartData) dataInput;
232 public Object entryToObject(Object keyInput, Object dataInput) { argument
235 SupplierData data = (SupplierData) dataInput;
279 public Object entryToObject(Object keyInput, Object dataInput) { argument
282 ShipmentData data = (ShipmentData) dataInput;
/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.java223 public Object entryToObject(TupleInput keyInput, Object dataInput) { argument
226 Part part = (Part) dataInput;
306 public Object entryToObject(TupleInput keyInput, Object dataInput) { argument
309 Supplier supplier = (Supplier) dataInput;
391 public Object entryToObject(TupleInput keyInput, Object dataInput) { argument
395 Shipment shipment = (Shipment) dataInput;
/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.java214 public Object entryToObject(TupleInput keyInput, Object dataInput) { argument
217 PartData data = (PartData) dataInput;
290 public Object entryToObject(TupleInput keyInput, Object dataInput) { argument
293 SupplierData data = (SupplierData) dataInput;
368 public Object entryToObject(TupleInput keyInput, Object dataInput) { argument
372 ShipmentData data = (ShipmentData) dataInput;

Completed in 203 milliseconds