Searched refs:subIndex (Results 1 - 5 of 5) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/persist/gettingStarted/
H A DSimpleDA.java28 sec_scursor = sIdx.subIndex("skeyone").entities();
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/persist/test/
H A DOperationTest.java418 EntityIndex<Integer,MyEntity> subIndex = secIndex.subIndex(1);
420 e = subIndex.get(txn, 1, null);
423 e = subIndex.get(txn, 2, null);
426 e = subIndex.get(txn, 3, null);
429 e = subIndex.get(txn, 5, null);
432 boolean deleted = subIndex.delete(txn, 1);
434 assertNull(subIndex.get(txn, 1, null));
435 assertNotNull(subIndex.get(txn, 2, null));
437 EntityCursor<MyEntity> cursor = subIndex
[all...]
H A DIndexTest.java396 checkIndex(index.subIndex(secKey),
400 checkIndex(indexRaw.subIndex(secKey),
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/persist/
H A DPersonExample.java189 dao.personByParentSsn.subIndex("111-11-1111").entities();
234 employees = dao.personByEmployerIds.subIndex(gizmoInc.id);
236 employees = dao.personByEmployerIds.subIndex(gadgetInc.id);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/
H A DSecondaryIndex.java119 * (SK). This mapping is provided by the {@link #subIndex} method. A
210 * {@code EntityIndex<Long,Entity>} subIndex = employeeByDepartment.subIndex(myDept);
211 * {@code EntityCursor<Employee>} cursor = subIndex.entities();
299 * {@code EntityIndex<Long,Entity>} subIndex = employeeByOrganization.subIndex(myOrg);
300 * {@code EntityCursor<Employee>} cursor = subIndex.entities();
927 public EntityIndex<PK,E> subIndex(SK key) method in class:SecondaryIndex

Completed in 99 milliseconds