From 780b92ada9afcf1d58085a83a0b9e6bc982203d1 Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Tue, 17 Feb 2015 17:25:57 +0000 Subject: Imported from /home/lorry/working-area/delta_berkeleydb/db-6.1.23.tar.gz. --- .../com/sleepycat/persist/model/Relationship.html | 685 ++++++++++----------- 1 file changed, 339 insertions(+), 346 deletions(-) (limited to 'docs/java/com/sleepycat/persist/model/Relationship.html') diff --git a/docs/java/com/sleepycat/persist/model/Relationship.html b/docs/java/com/sleepycat/persist/model/Relationship.html index e9e398a9..d9f2ac88 100644 --- a/docs/java/com/sleepycat/persist/model/Relationship.html +++ b/docs/java/com/sleepycat/persist/model/Relationship.html @@ -1,390 +1,383 @@ - - - - - -Relationship (Oracle - Berkeley DB Java API) - - - - - - - - - - - - -
- - +//--> + + - - - - - - - - - - - - - - - - -
-Berkeley DB
version 5.3.21
-
- + + +
+ + +
+ + + - -
-

- -com.sleepycat.persist.model -
-Enum Relationship

-
-java.lang.Object
-  extended by java.lang.Enum<Relationship>
-      extended by com.sleepycat.persist.model.Relationship
-
-
-
All Implemented Interfaces:
Serializable, Comparable<Relationship>
-
-
-
-
public enum Relationship
extends Enum<Relationship>
- - -

-Defines the relationship between instances of the entity class and the - secondary keys. This can be specified using a SecondaryKey.relate() - annotation. -

- -

-


- -

+

+
com.sleepycat.persist.model
+

Enum Relationship

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<Relationship>
    +
    +
    +
    +
    public enum Relationship
    +extends java.lang.Enum<Relationship>
    +
    Defines the relationship between instances of the entity class and the + secondary keys. This can be specified using a SecondaryKey.relate() + annotation.
    +
  • +
+
+
+
    +
  • - - - - - - - - - - - - - - - - - - -
    -Enum Constant Summary
    MANY_TO_MANY - -
    -          Relates many entities to many secondary keys.
    MANY_TO_ONE - -
    -          Relates many entities to one secondary key.
    ONE_TO_MANY - -
    -          Relates one entity to many secondary keys.
    ONE_TO_ONE - -
    -          Relates one entity to one secondary key.
    -  +
      +
    • + + +

      Enum Constant Summary

      + + + + + + + + + + + + + + + + + +
      Enum Constants 
      Enum Constant and Description
      MANY_TO_MANY +
      Relates many entities to many secondary keys.
      +
      MANY_TO_ONE +
      Relates many entities to one secondary key.
      +
      ONE_TO_MANY +
      Relates one entity to many secondary keys.
      +
      ONE_TO_ONE +
      Relates one entity to one secondary key.
      +
      +
    • +
    - - - - - - - - - - - - - - -
    -Method Summary
    -static RelationshipvalueOf(String name) - -
    -          Returns the enum constant of this type with the specified name.
    -static Relationship[]values() - -
    -          Returns an array containing the constants of this enum type, in -the order they are declared.
    - - - - - - - -
    Methods inherited from class java.lang.Enum
    clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
    - - - - - - - -
    Methods inherited from class java.lang.Object
    getClass, notify, notifyAll, wait, wait, wait
    -  -

    - +

      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static RelationshipvalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static Relationship[]values() +
      Returns an array containing the constants of this enum type, in +the order they are declared.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Enum

        +clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • - - - - - - -
    -Enum Constant Detail
    - -

    -MANY_TO_ONE

    -
    -public static final Relationship MANY_TO_ONE
    -
    -
    Relates many entities to one secondary key. +
      +
    • + + +

      Enum Constant Detail

      + + + +
        +
      • +

        MANY_TO_ONE

        +
        public static final Relationship MANY_TO_ONE
        +
        Relates many entities to one secondary key.

        The secondary index will have non-unique keys; in other words, duplicates will be allowed.

        The secondary key field is singular, in other words, it may not be an - array or collection type.

        -

        -

        -
        -
    -
    - -

    -ONE_TO_MANY

    -
    -public static final Relationship ONE_TO_MANY
    -
    -
    Relates one entity to many secondary keys. + array or collection type.

+ + + + + + + + + + + + + + + + - - - - - - -
-Method Detail
- -

-values

-
-public static Relationship[] values()
-
-
Returns an array containing the constants of this enum type, in +
    +
  • + + +

    Method Detail

    + + + +
      +
    • +

      values

      +
      public static Relationship[] values()
      +
      Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
       for (Relationship c : Relationship.values())
           System.out.println(c);
      -
      -

      -

      - -
      Returns:
      an array containing the constants of this enum type, in -the order they are declared
      -
      -
-
- -

-valueOf

-
-public static Relationship valueOf(String name)
-
-
Returns the enum constant of this type with the specified name. -The string must match exactly an identifier used to declare an +
+
Returns:
an array containing the constants of this enum type, in the order they are declared
+ + + + + + + + + + + + -
- - - - - - - - - - - - - - - - - - -
-Berkeley DB
version 5.3.21
-
- + + +
+ + +
+ + + - -
-Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved. - - +

Copyright (c) 1996, 2015 Oracle and/or its affiliates. All rights reserved.

+ + -- cgit v1.2.1