Package net.opengis.cat.csw20
Interface UpdateType
-
- All Superinterfaces:
EObject
,Notifier
- All Known Implementing Classes:
UpdateTypeImpl
public interface UpdateType extends EObject
A representation of the model object 'Update Type'. Update statements may replace an entire record or only update part of a record: 1) To replace an existing record, include a new instance of the record; 2) To update selected properties of an existing record, include a set of RecordProperty elements. The scope of the update statement is determined by the Constraint element. The 'handle' is a local identifier for the action.The following features are supported:
- See Also:
Csw20Package.getUpdateType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FeatureMap
getAny()
Returns the value of the 'Any' attribute list.QueryConstraintType
getConstraint()
Returns the value of the 'Constraint' containment reference.String
getHandle()
Returns the value of the 'Handle' attribute.EList<RecordPropertyType>
getRecordProperty()
Returns the value of the 'Record Property' containment reference list.void
setConstraint(QueryConstraintType value)
Sets the value of the 'Constraint
' containment reference.void
setHandle(String value)
Sets the value of the 'Handle
' attribute.
-
-
-
Method Detail
-
getAny
FeatureMap getAny()
Returns the value of the 'Any' attribute list. The list contents are of typeFeatureMap.Entry
.If the meaning of the 'Any' attribute list isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Any' attribute list.
- See Also:
Csw20Package.getUpdateType_Any()
-
getRecordProperty
EList<RecordPropertyType> getRecordProperty()
Returns the value of the 'Record Property' containment reference list. The list contents are of typeRecordPropertyType
. The RecordProperty element is used to specify the new value of a record property in an update statement.- Returns:
- the value of the 'Record Property' containment reference list.
- See Also:
Csw20Package.getUpdateType_RecordProperty()
-
getConstraint
QueryConstraintType getConstraint()
Returns the value of the 'Constraint' containment reference.If the meaning of the 'Constraint' containment reference isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Constraint' containment reference.
- See Also:
setConstraint(QueryConstraintType)
,Csw20Package.getUpdateType_Constraint()
-
setConstraint
void setConstraint(QueryConstraintType value)
Sets the value of the 'Constraint
' containment reference.- Parameters:
value
- the new value of the 'Constraint' containment reference.- See Also:
getConstraint()
-
getHandle
String getHandle()
Returns the value of the 'Handle' attribute.If the meaning of the 'Handle' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Handle' attribute.
- See Also:
setHandle(String)
,Csw20Package.getUpdateType_Handle()
-
setHandle
void setHandle(String value)
Sets the value of the 'Handle
' attribute.- Parameters:
value
- the new value of the 'Handle' attribute.- See Also:
getHandle()
-
-