oracle.owb.relational
Interface CheckConstraint

All Superinterfaces:
Extensible, OWBNamedObject, PropertyOwner

public interface CheckConstraint
extends OWBNamedObject, Extensible

CheckConstraint interface represents a CHECK integrity constraint. A CHECK integrity constraint on a column or set of columns requires that a specified condition be true or unknown for every row of the table.


Method Summary
 java.lang.String getCondition()
          Get the check condition
 Table getTable()
          Returns the containing table.
 void setCondition(java.lang.String value)
          Set the check condition.
 
Methods inherited from interface oracle.owb.foundation.OWBNamedObject
delete, getBusinessName, getClassDefinition, getComponent, getDescription, getName, getUOID, isDeletable, isEditable, isRenamable, setBusinessName, setDescription, setName
 
Methods inherited from interface oracle.owb.foundation.property.PropertyOwner
getDefaultPropertyValue, getLogicalPropertyKeys, getPhysicalPropertyKeys, getPropertyDomain, getPropertyKeys, getPropertyValue, getPropertyValueString, isLogicalProperty, isPhysicalProperty, isReadOnlyProperty, setPropertyValue, setPropertyValueByString
 

Method Detail

getTable

public Table getTable()
Returns the containing table.

setCondition

public void setCondition(java.lang.String value)
Set the check condition.
Parameters:
value - of the condition as a string.

getCondition

public java.lang.String getCondition()
Get the check condition