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/DeleteAction.html | 656 ++++++++++----------- 1 file changed, 326 insertions(+), 330 deletions(-) (limited to 'docs/java/com/sleepycat/persist/model/DeleteAction.html') diff --git a/docs/java/com/sleepycat/persist/model/DeleteAction.html b/docs/java/com/sleepycat/persist/model/DeleteAction.html index c990345d..4a227b33 100644 --- a/docs/java/com/sleepycat/persist/model/DeleteAction.html +++ b/docs/java/com/sleepycat/persist/model/DeleteAction.html @@ -1,362 +1,358 @@ - - - - - -DeleteAction (Oracle - Berkeley DB Java API) - - - - - - - - - - - - -
- - +//--> + + - - - - - - - - - - - - - - - - -
-Berkeley DB
version 5.3.21
-
- + + +
+ + +
+ + + - -
-

- -com.sleepycat.persist.model -
-Enum DeleteAction

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

-Specifies the action to take when a related entity is deleted having a +

+
com.sleepycat.persist.model
+

Enum DeleteAction

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<DeleteAction>
    +
    +
    +
    +
    public enum DeleteAction
    +extends java.lang.Enum<DeleteAction>
    +
    Specifies the action to take when a related entity is deleted having a primary key value that exists as a secondary key value for this entity. - This can be specified using a SecondaryKey.onRelatedEntityDelete() - annotation. -

    - -

    -


    - -

    + This can be specified using a SecondaryKey.onRelatedEntityDelete() + annotation.

    +
  • +
+
+
+
    +
  • - - - - - - - - - - - + + + + +
    -Enum Constant Summary
    ABORT - -
    -          The default action, ABORT, means that an exception is thrown in - order to abort the current transaction.
    CASCADE - -
    -          If CASCADE is specified, then this entity will be deleted also, +
      +
    • + + +

      Enum Constant Summary

      + + + + + + + + + + - - - - -
      Enum Constants 
      Enum Constant and Description
      ABORT +
      The default action, ABORT, means that an exception is thrown in + order to abort the current transaction.
      +
      CASCADE +
      If CASCADE is specified, then this entity will be deleted also, which could in turn trigger further deletions, causing a cascading - effect.
      NULLIFY - -
      -          If NULLIFY is specified, then the secondary key in this entity - is set to null and this entity is updated.
      -  + effect. +
    NULLIFY +
    If NULLIFY is specified, then the secondary key in this entity + is set to null and this entity is updated.
    +
    +
  • +
- - - - - - - - - - - - - - -
-Method Summary
-static DeleteActionvalueOf(String name) - -
-          Returns the enum constant of this type with the specified name.
-static DeleteAction[]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 DeleteActionvalueOf(java.lang.String name) +
    Returns the enum constant of this type with the specified name.
    +
    static DeleteAction[]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
    - -

    -ABORT

    -
    -public static final DeleteAction ABORT
    -
    -
    The default action, ABORT, means that an exception is thrown in - order to abort the current transaction. -

    -

    -
    -
    -
    - -

    -CASCADE

    -
    -public static final DeleteAction CASCADE
    -
    -
    If CASCADE is specified, then this entity will be deleted also, +
      +
    • + + +

      Enum Constant Detail

      + + + +
        +
      • +

        ABORT

        +
        public static final DeleteAction ABORT
        +
        The default action, ABORT, means that an exception is thrown in + order to abort the current transaction.
        +
      • +
      + + + +
        +
      • +

        CASCADE

        +
        public static final DeleteAction CASCADE
        +
        If CASCADE is specified, then this entity will be deleted also, which could in turn trigger further deletions, causing a cascading - effect. -

        -

        -
        -
    -
    - -

    -NULLIFY

    -
    -public static final DeleteAction NULLIFY
    -
    -
    If NULLIFY is specified, then the secondary key in this entity + effect.
+ + + + + + + + - - - - - - -
-Method Detail
- -

-values

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

    Method Detail

    + + + +
      +
    • +

      values

      +
      public static DeleteAction[] 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 (DeleteAction c : DeleteAction.values())
           System.out.println(c);
      -
      -

      -

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

-valueOf

-
-public static DeleteAction 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