Searched refs:PrimaryIndex (Results 1 - 25 of 27) sorted by relevance

12

/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.java7 import com.sleepycat.persist.PrimaryIndex;
38 PrimaryIndex<String,SimpleEntityClass> pIdx;
/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.java18 import com.sleepycat.persist.PrimaryIndex;
25 * PrimaryIndex} can be used to store and access instances of that class.
40 * PrimaryIndex}. Instances of the entity class and its subclasses are stored
41 * in the same {@code PrimaryIndex}. Fields in an entity subclass may be
H A DPrimaryKey.java19 import com.sleepycat.persist.PrimaryIndex;
24 * PrimaryIndex}.
157 * <code>put</code> methods in the {@link PrimaryIndex}, a new key will be
166 * <p>When one of the <code>put</code> methods in the {@link PrimaryIndex}
H A DSecondaryKey.java19 import com.sleepycat.persist.PrimaryIndex;
134 * by the {@link PrimaryIndex} {@code put} method.</p>
H A DEntityModel.java17 import com.sleepycat.persist.PrimaryIndex;
28 * model, a single {@link PrimaryIndex} object and zero or more {@link
/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.java13 import com.sleepycat.persist.PrimaryIndex;
71 public PrimaryIndex<Object,RawObject> getPrimaryIndex(String entityClass)
/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 DNegativeTest.java18 import com.sleepycat.persist.PrimaryIndex;
77 PrimaryIndex<BadKeyClass1,UseBadKeyClass1> index =
109 PrimaryIndex<Boolean,BadSequenceKeyEntity1> index =
118 PrimaryIndex<BadSequenceKeyEntity2.Key,
129 PrimaryIndex<BadSequenceKeyEntity3.Key,
189 PrimaryIndex<Integer,ProxyNestedRef> index = store.getPrimaryIndex
219 PrimaryIndex<Integer,EntitySuperClass> index = store.getPrimaryIndex
H A DOperationTest.java30 import com.sleepycat.persist.PrimaryIndex;
108 PrimaryIndex<Integer,SharedSequenceEntity1> priIndex =
135 PrimaryIndex<Integer,MyEntity> priIndex =
181 PrimaryIndex<Integer,MyEntity> priIndex =
215 PrimaryIndex<Integer,MyEntity> priIndex =
296 PrimaryIndex<Integer,MyEntity> priIndex =
399 PrimaryIndex<Integer,MyEntity> priIndex =
475 PrimaryIndex<Integer,SharedSequenceEntity1> priIndex1 =
478 PrimaryIndex<Integer,SharedSequenceEntity2> priIndex2 =
518 PrimaryIndex<Intege
[all...]
H A DJoinTest.java23 import com.sleepycat.persist.PrimaryIndex;
43 private PrimaryIndex<Integer,MyEntity> primary;
H A DSubclassIndexTest.java23 import com.sleepycat.persist.PrimaryIndex;
75 PrimaryIndex<String, Employee> employeesById =
H A DEvolveClasses.java24 import com.sleepycat.persist.PrimaryIndex;
68 PrimaryIndex<Object,RawObject> index =
398 PrimaryIndex<Long,
838 PrimaryIndex<Integer,
860 PrimaryIndex<Integer,
976 PrimaryIndex<Integer,RenamedEntity2_NewEntityName_WithRenamer>
1002 PrimaryIndex<Integer,RenamedEntity2_NewEntityName_WithRenamer>
1164 PrimaryIndex<Integer,DeleteSuperclass2_WithConverter>
1185 PrimaryIndex<Integer,DeleteSuperclass2_WithConverter>
1272 PrimaryIndex<Intege
[all...]
H A DForeignKeyTest.java24 import com.sleepycat.persist.PrimaryIndex;
73 private PrimaryIndex<String,Entity1> pri1;
74 private PrimaryIndex<String,Entity2> pri2;
H A DSequenceTest.java20 import com.sleepycat.persist.PrimaryIndex;
100 PrimaryIndex<Object,SequenceEntity> index =
H A DIndexTest.java35 import com.sleepycat.persist.PrimaryIndex;
63 private PrimaryIndex<Integer,MyEntity> primary;
70 private PrimaryIndex<Object,RawObject> primaryRaw;
200 /* Check PrimaryIndex put operations. */
327 private void addEntities(PrimaryIndex<Integer,MyEntity> primary)
/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.java53 * <p>To use an <code>EntityStore</code>, first obtain {@link PrimaryIndex} and
60 * PrimaryIndex} and {@link SecondaryIndex} classes may be used to obtain
188 public <PK,E> PrimaryIndex<PK,E> getPrimaryIndex(Class<PK> primaryKeyClass,
228 getSecondaryIndex(PrimaryIndex<PK,E> primaryIndex,
271 getSubclassIndex(PrimaryIndex<PK,E1> primaryIndex,
H A DSecondaryIndex.java59 * <p>Before obtaining a {@code SecondaryIndex}, the {@link PrimaryIndex} must
68 * {@code PrimaryIndex<Long,Employee>} primaryIndex =
81 * PrimaryIndex}.</p>
85 * PrimaryIndex} has only two type parameters {@code <PK,E>} or {@code
95 * <p>The {@link PrimaryIndex} maps from id directly to the entity, or from
99 * PrimaryIndex} to map from the primary key to the entity.</p>
125 * PrimaryIndex}, are shown using example data in the {@link EntityIndex}
348 * {@code PrimaryIndex<String,Department>} departmentIndex =
771 private PrimaryIndex priIndex;
806 PrimaryIndex<P
[all...]
H A DEntityJoin.java41 * {@literal PrimaryIndex<String,Person> personBySsn;}
69 private PrimaryIndex<PK,E> primary;
77 public EntityJoin(PrimaryIndex<PK,E> index) {
H A DPrimaryIndex.java6 * $Id: PrimaryIndex.java,v 1.1 2008/02/07 17:12:26 mark Exp $
34 * <p>{@code PrimaryIndex} objects are thread-safe. Multiple threads may
35 * safely call the methods of a shared {@code PrimaryIndex} object.</p>
37 * <p>{@code PrimaryIndex} implements {@link EntityIndex} to map the primary
61 * <p>To obtain the {@code PrimaryIndex} for a given entity class, call {@link
68 * {@code PrimaryIndex<Long,Employee>} primaryIndex =
78 * <p>The {@code PrimaryIndex} provides the primary storage and access methods
80 * updated in the {@code PrimaryIndex} by calling a method in the family of
181 * <p>Since {@code PrimaryIndex} implements the {@link EntityIndex} interface,
201 public class PrimaryIndex<P class in inherits:BasicIndex
233 public PrimaryIndex(Database database, method in class:PrimaryIndex
[all...]
H A DSubIndex.java75 PrimaryIndex<PK,E> priIndex = secIndex.getPrimaryIndex();
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/persist/
H A DCustomKeyOrderExample.java19 import com.sleepycat.persist.PrimaryIndex;
102 PrimaryIndex<ReverseOrder,Person> index =
H A DDplDump.java19 import com.sleepycat.persist.PrimaryIndex;
135 PrimaryIndex<Object,RawObject> index =
H A DPersonExample.java22 import com.sleepycat.persist.PrimaryIndex;
100 PrimaryIndex<String,Person> personBySsn;
106 PrimaryIndex<Long,Employer> employerById;
H A DEventExampleDPL.java27 import com.sleepycat.persist.PrimaryIndex;
118 PrimaryIndex<Date,Event> eventByTime;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/persist/txn/
H A DStoreWriter.java11 import com.sleepycat.persist.PrimaryIndex;
21 private PrimaryIndex<Integer,PayloadDataEntity> pdKey;
/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.java40 import com.sleepycat.persist.PrimaryIndex;
92 private Map<String,PrimaryIndex> priIndexMap;
130 priIndexMap = new HashMap<String,PrimaryIndex>();
280 public synchronized <PK,E> PrimaryIndex<PK,E>
294 PrimaryIndex<PK,E> priIndex = priIndexMap.get(entityClassName);
355 priIndex = new PrimaryIndex
472 private PrimaryIndex getRelatedIndex(String relatedClsName)
475 PrimaryIndex relatedIndex = priIndexMap.get(relatedClsName);
518 getSecondaryIndex(PrimaryIndex<PK,E1> primaryIndex,
599 PrimaryIndex<Objec
[all...]

Completed in 201 milliseconds

12