Package oracle.stellent.ridc.model
Interface DataObject
- All Known Implementing Classes:
DataObjectImpl
,DataResultSetRow
Generic data object that holds name/value pairs.
It may be used to represent a row of value in a DataResultSet.
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
getBoolean
(String name, boolean defaultValue) Retrieve the result as a booleangetCalendar
(String name) Retrieve the date.Retrieve the date.int
getInteger
(String name) Retrieve a value as an integervoid
setBoolean
(String name, boolean value) Set a value as a booleanvoid
Set a date value.Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
Method Details
-
getBoolean
Retrieve the result as a boolean- Parameters:
name
- the property namedefaultValue
- the default value if not found- Returns:
- the boolean value
-
setBoolean
Set a value as a boolean- Parameters:
name
- the property namevalue
- the property value
-
setDate
Set a date value. Note the date should be in GMT time.- Parameters:
name
- the property namedate
- the date in GMT time
-
getDate
Retrieve the date. Note the date is in GMT time.- Parameters:
name
- the property name- Returns:
- the date value in GMT or null if not found
-
getCalendar
Retrieve the date.- Parameters:
name
- the property name- Returns:
- the date value in GMT or null if not found
-
getInteger
Retrieve a value as an integer- Parameters:
name
- the property name- Returns:
- the integer value or -1 if not found
-