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

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/model/
H A DRelationship.java6 * $Id: Relationship.java,v 1.1 2008/02/07 17:12:28 mark Exp $
18 public enum Relationship { enum
H A DSecondaryKeyMetadata.java27 private Relationship relationship;
40 Relationship relationship,
53 * Relationship#ONE_TO_MANY ONE_TO_MANY} or {@link
54 * Relationship#MANY_TO_MANY MANY_TO_MANY} relationship, or null for a
55 * Relationship#ONE_TO_ONE ONE_TO_ONE} or {@link Relationship#MANY_TO_ONE
74 public Relationship getRelationship() {
H A DSecondaryKey.java76 * <tr><th>Relationship</th>
81 * <tr><td>{@link Relationship#ONE_TO_ONE}</td>
87 * <tr><td>{@link Relationship#MANY_TO_ONE}</td>
92 * <tr><td>{@link Relationship#ONE_TO_MANY}</td>
97 * <tr><td>{@link Relationship#MANY_TO_MANY}</td>
117 Relationship relate();
H A DAnnotationModel.java173 Relationship rel = secKey.relate();
175 if (rel == Relationship.ONE_TO_MANY ||
176 rel == Relationship.MANY_TO_MANY) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/persist/gettingStarted/
H A DSimpleEntityClass.java5 import static com.sleepycat.persist.model.Relationship.*;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/persist/txn/
H A DPayloadDataEntity.java5 import static com.sleepycat.persist.model.Relationship.*;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/persist/test/
H A DEnhanced0.java11 import static com.sleepycat.persist.model.Relationship.MANY_TO_ONE;
H A DEnhanced1.java11 import static com.sleepycat.persist.model.Relationship.MANY_TO_ONE;
H A DJoinTest.java11 import static com.sleepycat.persist.model.Relationship.MANY_TO_ONE;
H A DSubclassIndexTest.java11 import static com.sleepycat.persist.model.Relationship.MANY_TO_ONE;
H A DIndexTest.java11 import static com.sleepycat.persist.model.Relationship.MANY_TO_MANY;
12 import static com.sleepycat.persist.model.Relationship.MANY_TO_ONE;
13 import static com.sleepycat.persist.model.Relationship.ONE_TO_MANY;
14 import static com.sleepycat.persist.model.Relationship.ONE_TO_ONE;
H A DNegativeTest.java13 import static com.sleepycat.persist.model.Relationship.ONE_TO_ONE;
H A DForeignKeyTest.java14 import static com.sleepycat.persist.model.Relationship.ONE_TO_ONE;
H A DOperationTest.java11 import static com.sleepycat.persist.model.Relationship.MANY_TO_ONE;
12 import static com.sleepycat.persist.model.Relationship.ONE_TO_MANY;
13 import static com.sleepycat.persist.model.Relationship.ONE_TO_ONE;
H A DBindingTest.java11 import static com.sleepycat.persist.model.Relationship.MANY_TO_ONE;
12 import static com.sleepycat.persist.model.Relationship.ONE_TO_MANY;
13 import static com.sleepycat.persist.model.Relationship.ONE_TO_ONE;
H A DEvolveClasses.java10 import static com.sleepycat.persist.model.Relationship.ONE_TO_ONE;
11 import static com.sleepycat.persist.model.Relationship.MANY_TO_ONE;
5737 return "com.sleepycat.persist.evolve.IncompatibleClassException: Change detected in the relate attribute (Relationship) of a secondary key when evolving class: com.sleepycat.persist.test.EvolveClasses$DisallowChangeKeyRelate version: 0 to class: com.sleepycat.persist.test.EvolveClasses$DisallowChangeKeyRelate version: 0 Error: Old key: skey relate: ONE_TO_ONE new key: skey relate: MANY_TO_ONE";
/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 DPersistKeyCreator.java22 import com.sleepycat.persist.model.Relationship;
68 Relationship rel = secKeyMeta.getRelationship();
69 toMany = (rel == Relationship.ONE_TO_MANY ||
70 rel == Relationship.MANY_TO_MANY);
H A DStore.java57 import com.sleepycat.persist.model.Relationship;
978 Relationship rel = secKeyMeta.getRelationship();
979 config.setSortedDuplicates(rel == Relationship.MANY_TO_ONE ||
980 rel == Relationship.MANY_TO_MANY);
984 if (rel == Relationship.ONE_TO_MANY ||
985 rel == Relationship.MANY_TO_MANY) {
H A DComplexFormat.java29 import com.sleepycat.persist.model.Relationship;
103 Relationship rel = secKeyMeta.getRelationship();
104 if (rel == Relationship.ONE_TO_MANY ||
105 rel == Relationship.MANY_TO_MANY) {
1083 "Change detected in the relate attribute (Relationship) " +
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/persist/
H A DPersonExample.java30 import static com.sleepycat.persist.model.Relationship.ONE_TO_ONE;
31 import static com.sleepycat.persist.model.Relationship.ONE_TO_MANY;
32 import static com.sleepycat.persist.model.Relationship.MANY_TO_ONE;
33 import static com.sleepycat.persist.model.Relationship.MANY_TO_MANY;
H A DEventExampleDPL.java11 import static com.sleepycat.persist.model.Relationship.MANY_TO_ONE;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/
H A DEntityCursor.java17 import com.sleepycat.persist.model.Relationship;
173 * Relationship#MANY_TO_ONE MANY_TO_ONE} or {@link Relationship#MANY_TO_MANY
H A DSecondaryIndex.java28 import com.sleepycat.persist.model.Relationship;
142 * <p>A {@link Relationship#ONE_TO_ONE ONE_TO_ONE} relationship, although less
165 * <p>With a {@link Relationship#ONE_TO_ONE ONE_TO_ONE} relationship, the
179 * <p>A {@link Relationship#MANY_TO_ONE MANY_TO_ONE} relationship is the most
201 * <p>With a {@link Relationship#MANY_TO_ONE MANY_TO_ONE} relationship, the
222 * <p>In a {@link Relationship#ONE_TO_MANY ONE_TO_MANY} relationship, a single
243 * <p>With a {@link Relationship#ONE_TO_MANY ONE_TO_MANY} relationship, the
256 * <p>The secondary key field for a {@link Relationship#ONE_TO_MANY
268 * <p>In a {@link Relationship#MANY_TO_MANY MANY_TO_MANY} relationship, one
290 * <p>With a {@link Relationship#MANY_TO_MAN
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/build_unix/
H A DMakefile518 $(JAVA_SLEEPYCAT)/persist/model/Relationship.java \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/dist/
H A DMakefile.in513 $(JAVA_SLEEPYCAT)/persist/model/Relationship.java \

Completed in 216 milliseconds