| |
|
| java.lang.Object com.sleepycat.persist.evolve.EvolveConfig
EvolveConfig | public class EvolveConfig implements Cloneable(Code) | | Configuration properties for eager conversion of unevolved objects. This
configuration is used with
EntityStore.evolve EntityStore.evolve .
See Also: com.sleepycat.persist.evolve See Also: Class Evolution author: Mark Hayes |
Constructor Summary | |
public | EvolveConfig() Creates an evolve configuration with default properties. |
EvolveConfig | public EvolveConfig()(Code) | | Creates an evolve configuration with default properties.
|
addClassToEvolve | public void addClassToEvolve(String entityClass)(Code) | | Adds an entity class for a primary index to be converted. If no classes
are added, all indexes that require evolution will be converted.
|
cloneConfig | public EvolveConfig cloneConfig()(Code) | | Returns a shallow copy of the configuration.
|
getClassesToEvolve | public Set<String> getClassesToEvolve()(Code) | | Returns an unmodifiable set of the entity classes to be evolved.
|
getEvolveListener | public EvolveListener getEvolveListener()(Code) | | Returns the progress listener that is notified each time an entity is
read.
|
setEvolveListener | public void setEvolveListener(EvolveListener listener)(Code) | | Sets a progress listener that is notified each time an entity is read.
|
|
|
|