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. --- .../sleepycat/persist/evolve/EntityConverter.html | 692 ++++++++++----------- 1 file changed, 344 insertions(+), 348 deletions(-) (limited to 'docs/java/com/sleepycat/persist/evolve/EntityConverter.html') diff --git a/docs/java/com/sleepycat/persist/evolve/EntityConverter.html b/docs/java/com/sleepycat/persist/evolve/EntityConverter.html index f0c31609..066823ab 100644 --- a/docs/java/com/sleepycat/persist/evolve/EntityConverter.html +++ b/docs/java/com/sleepycat/persist/evolve/EntityConverter.html @@ -1,112 +1,119 @@ - - - - - -EntityConverter (Oracle - Berkeley DB Java API) - - - - - - - - - - - - -
- - +//--> + + - - - - - - - - - - - - - - - - -
-Berkeley DB
version 5.3.21
-
- + + +
+ + +
+ + + - -
-

- -com.sleepycat.persist.evolve -
-Class EntityConverter

-
-java.lang.Object
-  extended by com.sleepycat.persist.evolve.Mutation
-      extended by com.sleepycat.persist.evolve.Converter
-          extended by com.sleepycat.persist.evolve.EntityConverter
-
-
-
All Implemented Interfaces:
Serializable
-
-
-
-
public class EntityConverter
extends Converter
- - -

-A subclass of Converter that allows specifying keys to be deleted. +

+
com.sleepycat.persist.evolve
+

Class EntityConverter

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable
    +
    +
    +
    +
    public class EntityConverter
    +extends Converter
    +
    A subclass of Converter that allows specifying keys to be deleted.

    When a Converter is used with an entity class, secondary keys cannot be automatically deleted based on field deletion, because field Deleter objects @@ -115,262 +122,251 @@ A subclass of Converter that allows specifying keys to be deleted. deleted.

    It is not currently possible to rename or insert secondary keys when - using a Converter mutation with an entity class.

    -

    - -

    -

    -
    See Also:
    Converter, -Class Evolution, -Serialized Form
    -
    - -

    - + using a Converter mutation with an entity class.

    +
    See Also:
    Converter, +Class Evolution, +Serialized Form
    +
  • +
+
+
+
    +
  • - - - - - - - - - -
    -Constructor Summary
    EntityConverter(String entityClassName, - int classVersion, - Conversion conversion, - Set<String> deletedKeys) - -
    -          Creates a mutation for converting all instances of the given entity - class version to the current version of the class.
    -  +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      EntityConverter(java.lang.String entityClassName, + int classVersion, + Conversion conversion, + java.util.Set<java.lang.String> deletedKeys) +
      Creates a mutation for converting all instances of the given entity + class version to the current version of the class.
      +
      +
    • +
    - - - - - - - - - - - - - - - - - - - - - - -
    -Method Summary
    - booleanequals(Object other) - -
    -          Returns true if the deleted and renamed keys are equal in this object - and given object, and if the Converter.equals(java.lang.Object) superclass method - returns true.
    - Set<String>getDeletedKeys() - -
    -          Returns the set of key names that are to be deleted.
    - inthashCode() - -
    -           
    - StringtoString() - -
    -           
    - - - - - - - -
    Methods inherited from class com.sleepycat.persist.evolve.Converter
    getConversion
    - - - - - - - -
    Methods inherited from class com.sleepycat.persist.evolve.Mutation
    getClassName, getClassVersion, getFieldName
    - - - - - - - -
    Methods inherited from class java.lang.Object
    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    -  -

    - +

      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanequals(java.lang.Object other) +
      Returns true if the deleted and renamed keys are equal in this object + and given object, and if the Converter.equals(java.lang.Object) superclass method + returns true.
      +
      java.util.Set<java.lang.String>getDeletedKeys() +
      Returns the set of key names that are to be deleted.
      +
      inthashCode() 
      java.lang.StringtoString() 
      + + +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • - - - - - - -
    -Constructor Detail
    - -

    -EntityConverter

    -
    -public EntityConverter(String entityClassName,
    -                       int classVersion,
    -                       Conversion conversion,
    -                       Set<String> deletedKeys)
    -
    -
    Creates a mutation for converting all instances of the given entity - class version to the current version of the class. -

    -

    - +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        EntityConverter

        +
        public EntityConverter(java.lang.String entityClassName,
        +               int classVersion,
        +               Conversion conversion,
        +               java.util.Set<java.lang.String> deletedKeys)
        +
        Creates a mutation for converting all instances of the given entity + class version to the current version of the class.
        +
      • +
      +
    • +
    - - - - - - -
    -Method Detail
    - -

    -getDeletedKeys

    -
    -public Set<String> getDeletedKeys()
    -
    -
    Returns the set of key names that are to be deleted. -

    -

    -
    -
    -
    -
    - -

    -equals

    -
    -public boolean equals(Object other)
    -
    -
    Returns true if the deleted and renamed keys are equal in this object - and given object, and if the Converter.equals(java.lang.Object) superclass method - returns true. -

    -

    -
    Overrides:
    equals in class Converter
    -
    -
    -
    -
    -
    -
    - -

    -hashCode

    -
    -public int hashCode()
    -
    -
    -
    Overrides:
    hashCode in class Converter
    -
    -
    -
    -
    -
    -
    - -

    -toString

    -
    -public String toString()
    -
    -
    -
    Overrides:
    toString in class Converter
    -
    -
    -
    -
    -
    +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getDeletedKeys

        +
        public java.util.Set<java.lang.String> getDeletedKeys()
        +
        Returns the set of key names that are to be deleted.
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(java.lang.Object other)
        +
        Returns true if the deleted and renamed keys are equal in this object + and given object, and if the Converter.equals(java.lang.Object) superclass method + returns true.
        +
        +
        Overrides:
        +
        equals in class Converter
        +
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        +
        Overrides:
        +
        hashCode in class Converter
        +
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class Converter
        +
        +
      • +
      +
    • +
    +
  • +
+
+
-
- - - - - - - - - - - - - - - - - - -
-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