oracle.owb.foundation.type
Interface ScalarValue
- All Superinterfaces:
- Datatyped, OWBNamedObject, Value
- public interface ScalarValue
- extends Value
ScalarValue is an interface for all scalar value objects.
|
Method Summary |
java.lang.Object |
getValue()
Obtain the real value of this ScalarValue. |
void |
setValue(java.lang.Object value)
Set the real value of this ScalarValue. |
| Methods inherited from interface oracle.owb.foundation.type.Value |
equals |
| Methods inherited from interface oracle.owb.foundation.OWBNamedObject |
delete, getBusinessName, getClassDefinition, getComponent, getDescription, getName, getUOID, isDeletable, isEditable, isRenamable, setBusinessName, setDescription, setName |
getValue
public java.lang.Object getValue()
- Obtain the real value of this ScalarValue.
- Returns:
- Object - the real value. Usually this is a String.
- See Also:
#setValue.
setValue
public void setValue(java.lang.Object value)
throws TypeMismatchException
- Set the real value of this ScalarValue.
- Parameters:
value - - the real value- Throws:
TypeMismatchException - - value is incompartible type- See Also:
#getValue.