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. --- .../java/com/sleepycat/persist/evolve/Renamer.html | 707 ++++++++++----------- 1 file changed, 350 insertions(+), 357 deletions(-) (limited to 'docs/java/com/sleepycat/persist/evolve/Renamer.html') diff --git a/docs/java/com/sleepycat/persist/evolve/Renamer.html b/docs/java/com/sleepycat/persist/evolve/Renamer.html index 2ae6dce2..4c0638a3 100644 --- a/docs/java/com/sleepycat/persist/evolve/Renamer.html +++ b/docs/java/com/sleepycat/persist/evolve/Renamer.html @@ -1,111 +1,114 @@ - - - - - -Renamer (Oracle - Berkeley DB Java API) - - - - - - - - - - - - -
- - +//--> + + - - - - - - - - - - - - - - - - -
-Berkeley DB
version 5.3.21
-
- + + +
+ + +
+ + + - -
-

- -com.sleepycat.persist.evolve -
-Class Renamer

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

-A mutation for renaming a class or field without changing the instance or +

+
com.sleepycat.persist.evolve
+

Class Renamer

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable
    +
    +
    +
    +
    public class Renamer
    +extends Mutation
    +
    A mutation for renaming a class or field without changing the instance or field value. For example:
       package my.package;
    @@ -134,272 +137,262 @@ A mutation for renaming a class or field without changing the instance or
       mutations.addRenamer(new Renamer("my.package.Person", 0,
                                        "name", "fullName"));
     
    -  // Configure the mutations as described here.
    -

    - -

    -

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

    - + // Configure the mutations as described here.

    +
    See Also:
    Class Evolution, +Serialized Form
    +
  • +
+
+
+
    +
  • - - - - - - - - - - - - -
    -Constructor Summary
    Renamer(String fromClass, - int fromVersion, - String toClass) - -
    -          Creates a mutation for renaming the class of all instances of the given - class version.
    Renamer(String declaringClass, - int declaringClassVersion, - String fromField, - String toField) - -
    -          Creates a mutation for renaming the given field for all instances of the - given class version.
    -  +
      +
    • + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      Renamer(java.lang.String fromClass, + int fromVersion, + java.lang.String toClass) +
      Creates a mutation for renaming the class of all instances of the given + class version.
      +
      Renamer(java.lang.String declaringClass, + int declaringClassVersion, + java.lang.String fromField, + java.lang.String toField) +
      Creates a mutation for renaming the given field for all instances of the + given class version.
      +
      +
    • +
    - - - - - - - - - - - - - - - - - - - - - - -
    -Method Summary
    - booleanequals(Object other) - -
    -          Returns true if the new class name is equal in this object and given - object, and if the Mutation.equals(java.lang.Object) method returns true.
    - StringgetNewName() - -
    -          Returns the new class or field name specified in the constructor.
    - inthashCode() - -
    -           
    - StringtoString() - -
    -           
    - - - - - - - -
    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 new class name is equal in this object and given + object, and if the Mutation.equals(java.lang.Object) method returns true.
      +
      java.lang.StringgetNewName() +
      Returns the new class or field name specified in the constructor.
      +
      inthashCode() 
      java.lang.StringtoString() 
      + +
        +
      • + + +

        Methods inherited from class java.lang.Object

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

    -Renamer

    -
    -public Renamer(String fromClass,
    -               int fromVersion,
    -               String toClass)
    -
    -
    Creates a mutation for renaming the class of all instances of the given - class version. -

    -

    -
    - -

    -Renamer

    -
    -public Renamer(String declaringClass,
    -               int declaringClassVersion,
    -               String fromField,
    -               String toField)
    -
    -
    Creates a mutation for renaming the given field for all instances of the - given class version. -

    -

    - +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Renamer

        +
        public Renamer(java.lang.String fromClass,
        +       int fromVersion,
        +       java.lang.String toClass)
        +
        Creates a mutation for renaming the class of all instances of the given + class version.
        +
      • +
      + + + +
        +
      • +

        Renamer

        +
        public Renamer(java.lang.String declaringClass,
        +       int declaringClassVersion,
        +       java.lang.String fromField,
        +       java.lang.String toField)
        +
        Creates a mutation for renaming the given field for all instances of the + given class version.
        +
      • +
      +
    • +
    - - - - - - -
    -Method Detail
    - -

    -getNewName

    -
    -public String getNewName()
    -
    -
    Returns the new class or field name specified in the constructor. -

    -

    -
    -
    -
    -
    - -

    -equals

    -
    -public boolean equals(Object other)
    -
    -
    Returns true if the new class name is equal in this object and given - object, and if the Mutation.equals(java.lang.Object) method returns true. -

    -

    -
    Overrides:
    equals in class Mutation
    -
    -
    -
    -
    -
    -
    - -

    -hashCode

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

    -toString

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

      Method Detail

      + + + +
        +
      • +

        getNewName

        +
        public java.lang.String getNewName()
        +
        Returns the new class or field name specified in the constructor.
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(java.lang.Object other)
        +
        Returns true if the new class name is equal in this object and given + object, and if the Mutation.equals(java.lang.Object) method returns true.
        +
        +
        Overrides:
        +
        equals in class Mutation
        +
        +
      • +
      + + + +
        +
      • +

        hashCode

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

        toString

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