Searched refs:SecondaryIndex (Results 1 - 20 of 20) 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.java8 import com.sleepycat.persist.SecondaryIndex;
39 SecondaryIndex<String,String,SimpleEntityClass> sIdx;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/model/
H A DEntity.java19 import com.sleepycat.persist.SecondaryIndex;
26 * Optionally, one or more {@link SecondaryIndex} objects may be used to access
H A DSecondaryKey.java20 import com.sleepycat.persist.SecondaryIndex; // for javadoc
26 * is accessed via a {@link SecondaryIndex}.
H A DEntityModel.java18 import com.sleepycat.persist.SecondaryIndex;
29 * SecondaryIndex} objects may be accessed via an {@link EntityStore}.
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/raw/
H A DRawStore.java14 import com.sleepycat.persist.SecondaryIndex;
82 public SecondaryIndex<Object,Object,RawObject>
/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 DJoinTest.java24 import com.sleepycat.persist.SecondaryIndex;
44 private SecondaryIndex<Integer,Integer,MyEntity> sec1;
45 private SecondaryIndex<Integer,Integer,MyEntity> sec2;
46 private SecondaryIndex<Integer,Integer,MyEntity> sec3;
H A DIndexTest.java36 import com.sleepycat.persist.SecondaryIndex;
64 private SecondaryIndex<Integer,Integer,MyEntity> oneToOne;
65 private SecondaryIndex<Integer,Integer,MyEntity> manyToOne;
66 private SecondaryIndex<Integer,Integer,MyEntity> oneToMany;
67 private SecondaryIndex<Integer,Integer,MyEntity> manyToMany;
71 private SecondaryIndex<Object,Object,RawObject> oneToOneRaw;
72 private SecondaryIndex<Object,Object,RawObject> manyToOneRaw;
73 private SecondaryIndex<Object,Object,RawObject> oneToManyRaw;
74 private SecondaryIndex<Object,Object,RawObject> manyToManyRaw;
338 private void checkDelete(SecondaryIndex<Intege
[all...]
H A DSubclassIndexTest.java24 import com.sleepycat.persist.SecondaryIndex;
95 SecondaryIndex<String, String, Manager> managersByDept =
H A DForeignKeyTest.java25 import com.sleepycat.persist.SecondaryIndex;
75 private SecondaryIndex<String,String,Entity1> sec1;
76 private SecondaryIndex<String,String,Entity2> sec2;
H A DOperationTest.java31 import com.sleepycat.persist.SecondaryIndex;
184 SecondaryIndex<Integer,Integer,MyEntity> secIndex =
218 SecondaryIndex<Integer,Integer,MyEntity> secIndex =
299 SecondaryIndex<Integer,Integer,MyEntity> secIndex =
402 SecondaryIndex<Integer,Integer,MyEntity> secIndex =
687 SecondaryIndex<ToManyKey,Integer,ToManyKeyEntity> secIndex =
712 SecondaryIndex<ToManyKey,Integer,ToManyKeyEntity> secIndex =
824 SecondaryIndex<Integer,Integer,RelatedX> secX;
H A DEvolveClasses.java25 import com.sleepycat.persist.SecondaryIndex;
985 SecondaryIndex<Integer,Integer,
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/persist/
H A DPersonExample.java23 import com.sleepycat.persist.SecondaryIndex;
101 SecondaryIndex<String,String,Person> personByParentSsn;
102 SecondaryIndex<String,String,Person> personByEmailAddresses;
103 SecondaryIndex<Long,String,Person> personByEmployerIds;
107 SecondaryIndex<String,Long,Employer> employerByName;
H A DEventExampleDPL.java28 import com.sleepycat.persist.SecondaryIndex;
119 SecondaryIndex<Integer,Date,Event> eventByPrice;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/
H A DEntityStore.java54 * {@link SecondaryIndex} objects by calling {@link #getPrimaryIndex
60 * PrimaryIndex} and {@link SecondaryIndex} classes may be used to obtain
227 public <SK,PK,E> SecondaryIndex<SK,PK,E>
270 public <SK,PK,E1,E2 extends E1> SecondaryIndex<SK,PK,E2>
H A DSecondaryIndex.java6 * $Id: SecondaryIndex.java,v 1.1 2008/02/07 17:12:26 mark Exp $
34 * <p>{@code SecondaryIndex} objects are thread-safe. Multiple threads may
35 * safely call the methods of a shared {@code SecondaryIndex} object.</p>
37 * <p>{@code SecondaryIndex} implements {@link EntityIndex} to map the
59 * <p>Before obtaining a {@code SecondaryIndex}, the {@link PrimaryIndex} must
60 * be obtained for the entity class. To obtain the {@code SecondaryIndex} call
71 * {@code SecondaryIndex<String,Long,Employee>} secondaryIndex =
74 * <p>Since {@code SecondaryIndex} implements the {@link EntityIndex}
79 * <p>{@code SecondaryIndex} does <em>not</em> provide methods for inserting
83 * <p>Note that a {@code SecondaryIndex} ha
767 public class SecondaryIndex<SK,PK,E> extends BasicIndex<SK,E> { class in inherits:BasicIndex
804 public SecondaryIndex(SecondaryDatabase database, method in class:SecondaryIndex
[all...]
H A DSubIndex.java32 * The EntityIndex returned by SecondaryIndex.subIndex. A SubIndex, in JE
43 private SecondaryIndex<?,PK,E> secIndex;
58 <SK> SubIndex(SecondaryIndex<SK,PK,E> secIndex,
H A DEntityJoin.java42 * {@literal SecondaryIndex<String,String,Person> personByParentSsn;}
43 * {@literal SecondaryIndex<Long,String,Person> personByEmployerIds;}
91 public <SK> void addCondition(SecondaryIndex<SK,PK,E> index, SK key) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/
H A DStore.java41 import com.sleepycat.persist.SecondaryIndex;
93 private Map<String,SecondaryIndex> secIndexMap;
131 secIndexMap = new HashMap<String,SecondaryIndex>();
517 public synchronized <SK,PK,E1,E2 extends E1> SecondaryIndex<SK,PK,E2>
556 SecondaryIndex<SK,PK,E2> secIndex = secIndexMap.get(secName);
608 SecondaryIndex<Object,Object,Object> secIndex =
630 private <SK,PK,E1,E2 extends E1> SecondaryIndex<SK,PK,E2>
697 SecondaryIndex<SK,PK,E2> secIndex = new SecondaryIndex
787 SecondaryIndex secInde
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/build_unix/
H A DMakefile438 $(JAVA_SLEEPYCAT)/persist/SecondaryIndex.java \
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/dist/
H A DMakefile.in436 $(JAVA_SLEEPYCAT)/persist/SecondaryIndex.java \

Completed in 216 milliseconds