Class DefaultDataRecord
- java.lang.Object
-
- de.uplanet.lucy.server.datatrans.table.DefaultDataRecord
-
- All Implemented Interfaces:
IDataObject,IDataRecord
@Scriptable public class DefaultDataRecord extends Object implements IDataRecord
-
-
Constructor Summary
Constructors Constructor Description DefaultDataRecord(IDataWriter p_writer, Map<String,Class<?>> p_classes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetValue(String p_strName)Class<?>getValueClass(String p_strName)Collection<String>getValueNames()IDataWritergetWriter()Returns the writer from this data object has been returned ornull, if none.voidsetValue(String p_strName, Object p_value)
-
-
-
Constructor Detail
-
DefaultDataRecord
public DefaultDataRecord(IDataWriter p_writer, Map<String,Class<?>> p_classes)
-
-
Method Detail
-
getValue
public Object getValue(String p_strName) throws Exception
- Specified by:
getValuein interfaceIDataRecord- Throws:
Exception
-
setValue
public void setValue(String p_strName, Object p_value) throws Exception
- Specified by:
setValuein interfaceIDataRecord- Throws:
Exception
-
getValueClass
public Class<?> getValueClass(String p_strName)
- Specified by:
getValueClassin interfaceIDataRecord
-
getValueNames
public Collection<String> getValueNames()
- Specified by:
getValueNamesin interfaceIDataRecord
-
getWriter
public IDataWriter getWriter()
Description copied from interface:IDataObjectReturns the writer from this data object has been returned ornull, if none.- Specified by:
getWriterin interfaceIDataObject- Returns:
- A data writer.
-
-