Package lumis.doui.source
Interface ISourceData
-
- All Known Implementing Classes:
AbstractSourceData
,SourceData
,TabularData
@StableMinor(version="14.2", sinceVersion="4.0") public interface ISourceData extends Map<String,Object>
Interface to access a source's data. It is a map of the data identification to the data value.- Since:
- 4.0.4
- Version:
- $Revision: 24985 $ $Date: 2022-05-02 23:04:30 -0300 (Mon, 02 May 2022) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> T
get(Object key, Class<T> expectedClass)
Returns a data value, converted to the expected class.-
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
-
-