| |
|
| java.lang.Object org.jpox.metadata.MetaData org.jpox.metadata.AbstractConstraintMetaData org.jpox.metadata.UniqueMetaData
Field Summary | |
final boolean | deferred Whether the unique is initially deferred. |
Method Summary | |
public void | initialise() Method to initialise the object, creating internal convenience arrays. | final public boolean | isDeferred() Accessor for whether the unique constraint is deferred. | public String | toString(String prefix, String indent) Returns a string representation of the object.
This can be used as part of a facility to output a MetaData file. |
deferred | final boolean deferred(Code) | | Whether the unique is initially deferred.
|
UniqueMetaData | public UniqueMetaData(UniqueMetaData umd)(Code) | | Constructor to create a copy of the passed metadata using the provided parent.
Parameters: umd - The metadata to copy |
UniqueMetaData | public UniqueMetaData(String name, String table, String deferredValue)(Code) | | Constructor.
Parameters: name - Name of unique constraint Parameters: table - Name of the table Parameters: deferredValue - Whether the unique is deferred initially |
initialise | public void initialise()(Code) | | Method to initialise the object, creating internal convenience arrays.
Initialise all sub-objects.
|
isDeferred | final public boolean isDeferred()(Code) | | Accessor for whether the unique constraint is deferred.
Returns whether the unique constraint is deferred |
toString | public String toString(String prefix, String indent)(Code) | | Returns a string representation of the object.
This can be used as part of a facility to output a MetaData file.
Parameters: prefix - prefix string Parameters: indent - indent string a string representation of the object. |
|
|
|