Home
last modified time | relevance | path

Searched refs:SupplierKey (Results 1 – 25 of 73) sorted by relevance

123

/dports/databases/db18/db-18.1.40/examples/java/src/collections/ship/entity/
H A DSampleViews.java26 private final StoredSortedMap<SupplierKey, Supplier> supplierMap;
29 private final StoredSortedMap<SupplierKey, Shipment> shipmentBySupplierMap;
49 SerialBinding<SupplierKey> supplierKeyBinding = in SampleViews()
50 new SerialBinding<>(catalog, SupplierKey.class); in SampleViews()
52 new SupplierBinding(catalog, SupplierKey.class, in SampleViews()
107 public StoredSortedMap<SupplierKey, Supplier> getSupplierMap() { in getSupplierMap()
161 public StoredSortedMap<SupplierKey, Shipment> getShipmentBySupplierMap() { in getShipmentBySupplierMap()
233 Class<SupplierKey> keyClass, in SupplierBinding()
245 SupplierKey key = (SupplierKey) keyInput; in entryToObject()
255 public SupplierKey objectToKey(Supplier object) { in objectToKey()
[all …]
H A DSampleDatabase.java112 SupplierKey.class, in SampleDatabase()
136 SupplierKey.class)); in SampleDatabase()
241 extends SerialSerialKeyCreator<SupplierKey, SupplierData, String> {
251 Class<SupplierKey> primaryKeyClass, in SupplierByCityKeyCreator()
263 public String createSecondaryKey(SupplierKey primaryKeyInput, in createSecondaryKey()
311 extends SerialSerialKeyCreator<ShipmentKey, ShipmentData, SupplierKey> {
323 Class<SupplierKey> indexKeyClass) { in ShipmentBySupplierKeyCreator()
334 public SupplierKey createSecondaryKey(ShipmentKey primaryKeyInput, in createSecondaryKey()
336 return new SupplierKey(primaryKeyInput.getSupplierNumber()); in createSecondaryKey()
/dports/databases/db18/db-18.1.40/examples/java/src/collections/ship/index/
H A DSampleViews.java25 private final StoredSortedMap<SupplierKey, SupplierData> supplierMap;
28 private final StoredSortedMap<SupplierKey, ShipmentData> shipmentBySupplierMap;
47 EntryBinding<SupplierKey> supplierKeyBinding = in SampleViews()
48 new SerialBinding<>(catalog, SupplierKey.class); in SampleViews()
103 public final StoredSortedMap<SupplierKey, SupplierData> getSupplierMap() { in getSupplierMap()
130 public final StoredEntrySet<SupplierKey, SupplierData> getSupplierEntrySet() { in getSupplierEntrySet()
132 return (StoredEntrySet<SupplierKey, SupplierData>) supplierMap.entrySet(); in getSupplierEntrySet()
157 public StoredSortedMap<SupplierKey, ShipmentData> getShipmentBySupplierMap() { in getShipmentBySupplierMap()
H A DSampleDatabase.java112 SupplierKey.class, in SampleDatabase()
136 SupplierKey.class)); in SampleDatabase()
241 extends SerialSerialKeyCreator<SupplierKey, SupplierData, String> {
251 Class<SupplierKey> primaryKeyClass, in SupplierByCityKeyCreator()
263 public String createSecondaryKey(SupplierKey primaryKeyInput, in createSecondaryKey()
313 extends SerialSerialKeyCreator<ShipmentKey, ShipmentData, SupplierKey> {
325 Class<SupplierKey> indexKeyClass) { in ShipmentBySupplierKeyCreator()
336 public SupplierKey createSecondaryKey(ShipmentKey primaryKeyInput, in createSecondaryKey()
339 return new SupplierKey(primaryKeyInput.getSupplierNumber()); in createSecondaryKey()
H A DSample.java158 new SupplierKey("S1")).iterator()); in doWork()
204 Map<SupplierKey, SupplierData> suppliers = views.getSupplierMap(); in addSuppliers()
207 suppliers.put(new SupplierKey("S1"), in addSuppliers()
209 suppliers.put(new SupplierKey("S2"), in addSuppliers()
211 suppliers.put(new SupplierKey("S3"), in addSuppliers()
213 suppliers.put(new SupplierKey("S4"), in addSuppliers()
215 suppliers.put(new SupplierKey("S5"), in addSuppliers()
/dports/databases/db18/db-18.1.40/examples/java/src/collections/ship/basic/
H A DSampleViews.java25 private final StoredMap<SupplierKey, SupplierData> supplierMap;
43 EntryBinding<SupplierKey> supplierKeyBinding = in SampleViews()
44 new SerialBinding<>(catalog, SupplierKey.class); in SampleViews()
88 public final StoredMap<SupplierKey, SupplierData> getSupplierMap() { in getSupplierMap()
115 public final StoredEntrySet<SupplierKey, SupplierData> getSupplierEntrySet() { in getSupplierEntrySet()
117 return (StoredEntrySet<SupplierKey, SupplierData>) supplierMap.entrySet(); in getSupplierEntrySet()
H A DSample.java191 Map<SupplierKey, SupplierData> suppliers = views.getSupplierMap(); in addSuppliers()
194 suppliers.put(new SupplierKey("S1"), in addSuppliers()
196 suppliers.put(new SupplierKey("S2"), in addSuppliers()
198 suppliers.put(new SupplierKey("S3"), in addSuppliers()
200 suppliers.put(new SupplierKey("S4"), in addSuppliers()
202 suppliers.put(new SupplierKey("S5"), in addSuppliers()
/dports/databases/db18/db-18.1.40/examples/java/src/collections/ship/factory/
H A DSampleViews.java23 private final StoredSortedMap<SupplierKey, Supplier> supplierMap;
26 private final StoredSortedMap<SupplierKey, Shipment> shipmentBySupplierMap;
49 SupplierKey.class, Supplier.class, true); in SampleViews()
58 SupplierKey.class, Shipment.class, true); in SampleViews()
84 public StoredSortedMap<SupplierKey, Supplier> getSupplierMap() { in getSupplierMap()
138 public StoredSortedMap<SupplierKey, Shipment> getShipmentBySupplierMap() { in getShipmentBySupplierMap()
H A DSupplierKey.java23 public class SupplierKey implements MarshalledTupleEntry { class
27 public SupplierKey(String number) { in SupplierKey() method in SupplierKey
45 public SupplierKey() { in SupplierKey() method in SupplierKey
/dports/databases/db18/db-18.1.40/examples/java/src/collections/ship/sentity/
H A DSampleViews.java29 private final StoredSortedMap<SupplierKey, Supplier> supplierMap;
32 private final StoredSortedMap<SupplierKey, Shipment> shipmentBySupplierMap;
53 EntryBinding<SupplierKey> supplierKeyBinding = in SampleViews()
108 public StoredSortedMap<SupplierKey, Supplier> getSupplierMap() { in getSupplierMap()
162 public StoredSortedMap<SupplierKey, Shipment> getShipmentBySupplierMap() { in getShipmentBySupplierMap()
266 private static class SupplierKeyBinding extends TupleBinding<SupplierKey> {
278 public SupplierKey entryToObject(TupleInput input) { in entryToObject()
281 return new SupplierKey(number); in entryToObject()
288 public void objectToEntry(SupplierKey object, TupleOutput output) { in objectToEntry()
/dports/databases/db18/db-18.1.40/examples/java/src/collections/ship/tuple/
H A DSampleViews.java29 private final StoredSortedMap<SupplierKey, Supplier> supplierMap;
32 private final StoredSortedMap<SupplierKey, Shipment> shipmentBySupplierMap;
52 EntryBinding<SupplierKey> supplierKeyBinding = in SampleViews()
107 public StoredSortedMap<SupplierKey, Supplier> getSupplierMap() { in getSupplierMap()
161 public StoredSortedMap<SupplierKey, Shipment> getShipmentBySupplierMap() { in getShipmentBySupplierMap()
258 private static class SupplierKeyBinding extends TupleBinding<SupplierKey> {
270 public SupplierKey entryToObject(TupleInput input) { in entryToObject()
273 return new SupplierKey(number); in entryToObject()
280 public void objectToEntry(SupplierKey object, TupleOutput output) { in objectToEntry()
/dports/databases/db18/db-18.1.40/examples/java/src/collections/ship/marshal/
H A DSampleViews.java30 private final StoredSortedMap<SupplierKey, Supplier> supplierMap;
33 private final StoredSortedMap<SupplierKey, Shipment> shipmentBySupplierMap;
54 EntryBinding<SupplierKey> supplierKeyBinding = in SampleViews()
55 new MarshalledKeyBinding<>(SupplierKey.class); in SampleViews()
109 public StoredSortedMap<SupplierKey, Supplier> getSupplierMap() { in getSupplierMap()
163 public StoredSortedMap<SupplierKey, Shipment> getShipmentBySupplierMap() { in getShipmentBySupplierMap()
H A DSupplierKey.java22 public class SupplierKey implements MarshalledKey { class
26 public SupplierKey(String number) { in SupplierKey() method in SupplierKey
44 SupplierKey() { in SupplierKey() method in SupplierKey
/dports/java/berkeley-db/je-6.2.31/examples/collections/ship/index/
H A DSample.java152 new SupplierKey("S1")).iterator()); in doWork()
201 suppliers.put(new SupplierKey("S1"), in addSuppliers()
203 suppliers.put(new SupplierKey("S2"), in addSuppliers()
205 suppliers.put(new SupplierKey("S3"), in addSuppliers()
207 suppliers.put(new SupplierKey("S4"), in addSuppliers()
209 suppliers.put(new SupplierKey("S5"), in addSuppliers()
/dports/databases/db5/db-5.3.28/examples/java/src/collections/ship/index/
H A DSample.java156 new SupplierKey("S1")).iterator()); in doWork()
205 suppliers.put(new SupplierKey("S1"), in addSuppliers()
207 suppliers.put(new SupplierKey("S2"), in addSuppliers()
209 suppliers.put(new SupplierKey("S3"), in addSuppliers()
211 suppliers.put(new SupplierKey("S4"), in addSuppliers()
213 suppliers.put(new SupplierKey("S5"), in addSuppliers()
/dports/databases/db5/db-5.3.28/examples/java/src/collections/ship/marshal/
H A DSupplierKey.java23 public class SupplierKey implements MarshalledKey { class
27 public SupplierKey(String number) { in SupplierKey() method in SupplierKey
44 SupplierKey() { in SupplierKey() method in SupplierKey
/dports/java/berkeley-db/je-6.2.31/examples/collections/ship/marshal/
H A DSupplierKey.java22 public class SupplierKey implements MarshalledKey { class
26 public SupplierKey(String number) { in SupplierKey() method in SupplierKey
43 SupplierKey() { in SupplierKey() method in SupplierKey
/dports/databases/db5/db-5.3.28/examples/java/src/collections/ship/factory/
H A DSupplierKey.java24 public class SupplierKey implements MarshalledTupleEntry { class
28 public SupplierKey(String number) { in SupplierKey() method in SupplierKey
45 public SupplierKey() { in SupplierKey() method in SupplierKey
/dports/java/berkeley-db/je-6.2.31/examples/collections/ship/factory/
H A DSupplierKey.java22 public class SupplierKey implements MarshalledTupleEntry { class
26 public SupplierKey(String number) { in SupplierKey() method in SupplierKey
43 public SupplierKey() { in SupplierKey() method in SupplierKey
/dports/databases/db5/db-5.3.28/examples/java/src/collections/ship/basic/
H A DSample.java192 suppliers.put(new SupplierKey("S1"), in addSuppliers()
194 suppliers.put(new SupplierKey("S2"), in addSuppliers()
196 suppliers.put(new SupplierKey("S3"), in addSuppliers()
198 suppliers.put(new SupplierKey("S4"), in addSuppliers()
200 suppliers.put(new SupplierKey("S5"), in addSuppliers()
/dports/java/berkeley-db/je-6.2.31/examples/collections/ship/basic/
H A DSample.java188 suppliers.put(new SupplierKey("S1"), in addSuppliers()
190 suppliers.put(new SupplierKey("S2"), in addSuppliers()
192 suppliers.put(new SupplierKey("S3"), in addSuppliers()
194 suppliers.put(new SupplierKey("S4"), in addSuppliers()
196 suppliers.put(new SupplierKey("S5"), in addSuppliers()
/dports/databases/db5/db-5.3.28/examples/java/src/collections/ship/entity/
H A DSampleViews.java50 new SerialBinding(catalog, SupplierKey.class); in SampleViews()
52 new SupplierBinding(catalog, SupplierKey.class, in SampleViews()
234 SupplierKey key = (SupplierKey) keyInput; in entryToObject()
246 return new SupplierKey(supplier.getNumber()); in objectToKey()
/dports/java/berkeley-db/je-6.2.31/examples/collections/ship/entity/
H A DSampleViews.java49 new SerialBinding(catalog, SupplierKey.class); in SampleViews()
51 new SupplierBinding(catalog, SupplierKey.class, in SampleViews()
233 SupplierKey key = (SupplierKey) keyInput; in entryToObject()
245 return new SupplierKey(supplier.getNumber()); in objectToKey()
H A DSampleDatabase.java102 SupplierKey.class, in SampleDatabase()
124 SupplierKey.class)); in SampleDatabase()
229 Class<SupplierKey> primaryKeyClass, in SupplierByCityKeyCreator()
303 Class<SupplierKey> indexKeyClass) { in ShipmentBySupplierKeyCreator()
317 return new SupplierKey(shipmentKey.getSupplierNumber()); in createSecondaryKey()
/dports/databases/db5/db-5.3.28/examples/java/src/collections/ship/sentity/
H A DSupplierKey.java20 public class SupplierKey { class
24 public SupplierKey(String number) { in SupplierKey() method in SupplierKey

123