Interface ExportOperation.SchemaOptions
- Enclosing interface:
- ExportOperation
public static interface ExportOperation.SchemaOptions
Options for configuring the export of an added
schema
.- Since:
- 5.1.42
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Adds an entity to be exported.void
setExportAllEntities
(boolean enable) Defines to export all entities within the schema.void
setExportGidMapping
(boolean enable) Defines to export the gid mapping information of the schema.
-
Method Details
-
setExportGidMapping
void setExportGidMapping(boolean enable) Defines to export the gid mapping information of the schema. This option is disabled by default.- Parameters:
enable
-true
, to export the gid mapping information.- Since:
- 5.2.200601
-
setExportAllEntities
void setExportAllEntities(boolean enable) Defines to export all entities within the schema. This option is disabled by default.- Parameters:
enable
-true
, to export all entities.- Since:
- 5.1.42
-
addEntity
Adds an entity to be exported. If the option toexport all entities
is enabled, adding an entity has no effect.- Parameters:
entity
- The entity to be added.- Throws:
IllegalArgumentException
- if the entity does not belong to this options schema.- Since:
- 5.1.42
-