Package edm.edom3
Class EDMConstants.CreateModelOptions
- java.lang.Object
-
- edm.edom3.EDMConstants.CreateModelOptions
-
- Enclosing interface:
- EDMConstants
public static class EDMConstants.CreateModelOptions extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static long
CHAR_ENCODING_ISO_8859_1
Use ISO 8859-1 Character encoding in the modelstatic long
CHAR_ENCODING_ISO_8859_2
Use ISO 8859-2 Character encoding in the modelstatic long
CHAR_ENCODING_UTF_8
Use UTF-8 Character encoding in the modelstatic long
M_DELETE_INSTANCE_REFS_ON_DELETE
Causes all external references to an instance to be deleted automatically when the instance itself is deleted.static long
M_INSTANCE_REFERENCES
This option enables the creation and maintenance of "instance references tables".static long
M_INSTANCE_REFS_MUST_BE_DELETED
Instances that are referenced externally from other instances may not be deleted.static long
M_PACKED_MODEL
No garbage collection for the edmModel when data is freed.static long
M_USER_CONTROLLED_INVERSE
This option prevents automatic update and maintenance of the INVERSE attributes in the model.static long
USE_DEFAULT_OPTIONS
use the sdaiCreateModel() functionn with its implicit options.
-
Constructor Summary
Constructors Constructor Description CreateModelOptions()
-
-
-
Field Detail
-
M_USER_CONTROLLED_INVERSE
public static final long M_USER_CONTROLLED_INVERSE
This option prevents automatic update and maintenance of the INVERSE attributes in the model. Use this option with care. It may increase performance, but prevents INVERSE based functionality. Preferably not on models that are ment to remain persistant in the EDMdatabase .- See Also:
- Constant Field Values
-
M_INSTANCE_REFERENCES
public static final long M_INSTANCE_REFERENCES
This option enables the creation and maintenance of "instance references tables". As a result of this, the following operations will work:The built in function USEDIN, The EDMinterface operations: edmiUsedIn, edmiUsedInBN, and edmiGetInstanceReferences The ExpressX function xpxGetInstanceReferences- See Also:
- Constant Field Values
-
M_DELETE_INSTANCE_REFS_ON_DELETE
public static final long M_DELETE_INSTANCE_REFS_ON_DELETE
Causes all external references to an instance to be deleted automatically when the instance itself is deleted.- See Also:
- Constant Field Values
-
M_INSTANCE_REFS_MUST_BE_DELETED
public static final long M_INSTANCE_REFS_MUST_BE_DELETED
Instances that are referenced externally from other instances may not be deleted. The references must be deleted explicitly first.- See Also:
- Constant Field Values
-
M_PACKED_MODEL
public static final long M_PACKED_MODEL
No garbage collection for the edmModel when data is freed. The disk space used for the edmModel will normally increase.This option can influence the system performance.- See Also:
- Constant Field Values
-
USE_DEFAULT_OPTIONS
public static final long USE_DEFAULT_OPTIONS
use the sdaiCreateModel() functionn with its implicit options. Rest of options are ignored.- See Also:
- Constant Field Values
-
CHAR_ENCODING_UTF_8
public static final long CHAR_ENCODING_UTF_8
Use UTF-8 Character encoding in the model- See Also:
- Constant Field Values
-
CHAR_ENCODING_ISO_8859_1
public static final long CHAR_ENCODING_ISO_8859_1
Use ISO 8859-1 Character encoding in the model- See Also:
- Constant Field Values
-
CHAR_ENCODING_ISO_8859_2
public static final long CHAR_ENCODING_ISO_8859_2
Use ISO 8859-2 Character encoding in the model- See Also:
- Constant Field Values
-
-