public interface ValueCondition extends OsidCondition
A value condition interface.
Modifier and Type | Method and Description |
---|---|
ValueConditionRecord |
getValueConditionRecord(Type valueConditionRecordType)
Gets the record corresponding to the given
ValueCondition
record Type. |
getRecordTypes, hasRecordType
ValueConditionRecord getValueConditionRecord(Type valueConditionRecordType) throws OperationFailedException
ValueCondition
record Type.
This method is used to retrieve an
object implementing the requested record. The
valueConditionRecordType
may be the Type
returned in getRecordTypes()
or any of its parents in a
Type
hierarchy where
hasRecordType(valueConditionRecordType)
is true
.valueConditionRecordType
- a value condition record typeNullArgumentException
- valueConditionRecordType
is null
OperationFailedException
- unable to complete requestUnsupportedException
-
hasRecordType(valueConditionRecordType)
is
false
mandatory
- This method must be implemented.