public interface IObjectClassValidation
extends java.io.Serializable
The IObjectClassValidation interface is an optional interface that is used to provide custom validation of objects in an object class or feature class. This validation is in addition to geodatabase validation of domains, relationship rules and connectivity rules.
com.esri.arcgis.editor.IShortTransactionObjectInspector
Modifier and Type | Method and Description |
---|---|
java.lang.String |
validateField(IRow row,
java.lang.String fieldName)
Validates the row's specified attribute.
|
java.lang.String |
validateRow(IRow row)
Validates the row.
|
java.lang.String validateField(IRow row, java.lang.String fieldName) throws java.io.IOException, AutomationException
The ValidateField method will be called when IValidate::GetInvalidFields is called on an object of the associated object class.
row
- A reference to a com.esri.arcgis.geodatabase.IRow (in)fieldName
- The fieldName (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.com.esri.arcgis.editor.IShortTransactionObjectInspector
java.lang.String validateRow(IRow row) throws java.io.IOException, AutomationException
The ValidateRow method is called by an Object’s IValidate::Validate and by the Validate methods on the IValidation interface of the associated object class. ValidateRow should be used to validate database or spatial relationships in addition to field values. If the field or row is invalid, an appropriate error string should be returned. Otherwise, return a zero length string.
row
- A reference to a com.esri.arcgis.geodatabase.IRow (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.com.esri.arcgis.editor.IShortTransactionObjectInspector