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. --- docs/java/com/sleepycat/persist/StoreConfig.html | 1607 ++++++++++------------ 1 file changed, 717 insertions(+), 890 deletions(-) (limited to 'docs/java/com/sleepycat/persist/StoreConfig.html') diff --git a/docs/java/com/sleepycat/persist/StoreConfig.html b/docs/java/com/sleepycat/persist/StoreConfig.html index 344e7335..e690947c 100644 --- a/docs/java/com/sleepycat/persist/StoreConfig.html +++ b/docs/java/com/sleepycat/persist/StoreConfig.html @@ -1,687 +1,571 @@ - - - - - -StoreConfig (Oracle - Berkeley DB Java API) - - - - - - - - - - - - -
- - +//--> + + - - - - - - - - - - - - - - - - -
-Berkeley DB
version 5.3.21
-
- + + +
+ + +
+ + + - -
-

- -com.sleepycat.persist -
-Class StoreConfig

-
-java.lang.Object
-  extended by com.sleepycat.persist.StoreConfig
-
-
-
All Implemented Interfaces:
Cloneable
-
-
-
-
public class StoreConfig
extends Object
implements Cloneable
- - -

-Configuration properties used with an EntityStore or RawStore. +

+
com.sleepycat.persist
+

Class StoreConfig

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.lang.Cloneable
    +
    +
    +
    +
    public class StoreConfig
    +extends java.lang.Object
    +implements java.lang.Cloneable
    +
    Configuration properties used with an EntityStore or RawStore.

    StoreConfig objects are thread-safe. Multiple threads may safely call the methods of a shared StoreConfig object.

    See the package - summary example for an example of using a StoreConfig.

    -

    - -

    -


    - -

    + summary example for an example of using a StoreConfig.

    +
  • +
+
+
+
    +
  • - - - - - - - - - - -
    -Field Summary
    -static StoreConfigDEFAULT - -
    -          The default store configuration containing properties as if the - configuration were constructed and not modified.
    -  +
      +
    • + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static StoreConfigDEFAULT +
      The default store configuration containing properties as if the + configuration were constructed and not modified.
      +
      +
    • +
    - - - - - - - - - -
    -Constructor Summary
    StoreConfig() - -
    -          Creates an entity store configuration object with default properties.
    -  +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      StoreConfig() +
      Creates an entity store configuration object with default properties.
      +
      +
    • +
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -Method Summary
    - StoreConfigclone() - -
    -          Returns a shallow copy of the configuration.
    - StoreConfigcloneConfig() - -
    -          Deprecated. As of JE 4.0.13, replaced by clone().

    - booleangetAllowCreate() - -
    -          Returns whether creation of a new store is allowed.
    - DatabaseNamergetDatabaseNamer() - -
    -          Returns the object reponsible for naming of files and databases.
    - booleangetExclusiveCreate() - -
    -          Returns whether opening an existing store is prohibited.
    - EntityModelgetModel() - -
    -          Returns the entity model that defines entity classes and index keys.
    - MutationsgetMutations() - -
    -          Returns the configured mutations for performing lazy evolution of stored - instances.
    - booleangetReadOnly() - -
    -          Returns the read-only configuration property.
    - booleangetSecondaryBulkLoad() - -
    -          Returns the bulk-load-secondaries configuration property.
    - booleangetTransactional() - -
    -          Returns the transactional configuration property.
    - StoreConfigsetAllowCreate(boolean allowCreate) - -
    -          Specifies whether creation of a new store is allowed.
    - voidsetAllowCreateVoid(boolean allowCreate) - -
    -           
    - StoreConfigsetDatabaseNamer(DatabaseNamer databaseNamer) - -
    -          Specifies the object reponsible for naming of files and databases.
    - voidsetDatabaseNamerVoid(DatabaseNamer databaseNamer) - -
    -           
    - StoreConfigsetExclusiveCreate(boolean exclusiveCreate) - -
    -          Specifies whether opening an existing store is prohibited.
    - voidsetExclusiveCreateVoid(boolean exclusiveCreate) - -
    -           
    - StoreConfigsetModel(EntityModel model) - -
    -          Sets the entity model that defines entity classes and index keys.
    - voidsetModelVoid(EntityModel model) - -
    -           
    - StoreConfigsetMutations(Mutations mutations) - -
    -          Configures mutations for performing lazy evolution of stored instances.
    - voidsetMutationsVoid(Mutations mutations) - -
    -           
    - StoreConfigsetReadOnly(boolean readOnly) - -
    -          Sets the read-only configuration property.
    - voidsetReadOnlyVoid(boolean readOnly) - -
    -           
    - StoreConfigsetSecondaryBulkLoad(boolean secondaryBulkLoad) - -
    -          Sets the bulk-load-secondaries configuration property.
    - voidsetSecondaryBulkLoadVoid(boolean secondaryBulkLoad) - -
    -           
    - StoreConfigsetTransactional(boolean transactional) - -
    -          Sets the transactional configuration property.
    - voidsetTransactionalVoid(boolean transactional) - -
    -           
    - - - - - - - -
    Methods inherited from class java.lang.Object
    equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    -  -

    - +

    +
  • +
+
+
+
    +
  • - - - - - - -
    -Field Detail
    - -

    -DEFAULT

    -
    -public static final StoreConfig DEFAULT
    -
    -
    The default store configuration containing properties as if the - configuration were constructed and not modified. -

    -

    -
    -
    - +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        DEFAULT

        +
        public static final StoreConfig DEFAULT
        +
        The default store configuration containing properties as if the + configuration were constructed and not modified.
        +
      • +
      +
    • +
    - - - - - - -
    -Constructor Detail
    - -

    -StoreConfig

    -
    -public StoreConfig()
    -
    -
    Creates an entity store configuration object with default properties. -

    -

    - +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        StoreConfig

        +
        public StoreConfig()
        +
        Creates an entity store configuration object with default properties.
        +
      • +
      +
    • +
    - - - - - - -
    -Method Detail
    - -

    -cloneConfig

    -
    -public StoreConfig cloneConfig()
    -
    -
    Deprecated. As of JE 4.0.13, replaced by clone().

    -

    -

    Returns a shallow copy of the configuration. -

    -

    -
    -
    -
    -
    -
    -
    -
    - -

    -clone

    -
    -public StoreConfig clone()
    -
    -
    Returns a shallow copy of the configuration. -

    -

    -
    Overrides:
    clone in class Object
    -
    -
    -
    -
    -
    -
    - -

    -setAllowCreate

    -
    -public StoreConfig setAllowCreate(boolean allowCreate)
    -
    -
    Specifies whether creation of a new store is allowed. By default this +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        cloneConfig

        +
        public StoreConfig cloneConfig()
        +
        Deprecated. As of JE 4.0.13, replaced by clone().

        +
        Returns a shallow copy of the configuration.
        +
      • +
      + + + +
        +
      • +

        clone

        +
        public StoreConfig clone()
        +
        Returns a shallow copy of the configuration.
        +
        +
        Overrides:
        +
        clone in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        setAllowCreate

        +
        public StoreConfig setAllowCreate(boolean allowCreate)
        +
        Specifies whether creation of a new store is allowed. By default this property is false.

        If this property is false and the internal store metadata database - does not exist, DatabaseException will be thrown when the store - is opened.

        -

        -

        -
        -
        -
        -
        -
        -
    -
    - -

    -setAllowCreateVoid

    -
    -public void setAllowCreateVoid(boolean allowCreate)
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -

    -getAllowCreate

    -
    -public boolean getAllowCreate()
    -
    -
    Returns whether creation of a new store is allowed. -

    -

    -
    -
    -
    -
    -
    -
    -
    - -

    -setExclusiveCreate

    -
    -public StoreConfig setExclusiveCreate(boolean exclusiveCreate)
    -
    -
    Specifies whether opening an existing store is prohibited. By default + does not exist, DatabaseException will be thrown when the store + is opened.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ -
- - - - - - - - - - - - - - - - - - -
-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