| java.lang.Object org.apache.derby.iapi.sql.dictionary.TupleDescriptor org.apache.derby.iapi.sql.dictionary.DefaultDescriptor
DefaultDescriptor | public DefaultDescriptor(DataDictionary dataDictionary, UUID defaultUUID, UUID tableUUID, int columnNumber)(Code) | | Constructor for a DefaultDescriptor
Parameters: dataDictionary - the DD Parameters: defaultUUID - The UUID of the default Parameters: tableUUID - The UUID of the table Parameters: columnNumber - The column number of the column that the default is for |
getClassType | public String getClassType()(Code) | | Get the provider's type.
char The provider's type. |
getColumnNumber | public int getColumnNumber()(Code) | | Get the column number of the column.
The column number of the column. |
getObjectID | public UUID getObjectID()(Code) | | Get the provider's UUID
The provider's UUID |
getObjectName | public String getObjectName()(Code) | | Return the name of this Provider. (Useful for errors.)
String The name of this provider. |
getTableUUID | public UUID getTableUUID()(Code) | | Get the UUID of the table.
The UUID of the table. |
getUUID | public UUID getUUID()(Code) | | Get the UUID of the default.
The UUID of the default. |
isValid | public synchronized boolean isValid()(Code) | | Check that all of the dependent's dependencies are valid.
true if the dependent is currently valid |
makeInvalid | public void makeInvalid(int action, LanguageConnectionContext lcc) throws StandardException(Code) | | Mark the dependent as invalid (due to at least one of
its dependencies being invalid). Always an error
for a constraint -- should never have gotten here.
Parameters: action - The action causing the invalidation exception: StandardException - thrown if called in sanity mode |
prepareToInvalidate | public void prepareToInvalidate(Provider p, int action, LanguageConnectionContext lcc) throws StandardException(Code) | | Prepare to mark the dependent as invalid (due to at least one of
its dependencies being invalid).
Parameters: action - The action causing the invalidation Parameters: p - the provider exception: StandardException - thrown if unable to make it invalid |
toString | public String toString()(Code) | | Convert the DefaultDescriptor to a String.
A String representation of this DefaultDescriptor |
|
|