Package com.ibm.dbb.build.report.records
Class AbstractRecordFactory
- java.lang.Object
-
- com.ibm.dbb.build.report.records.AbstractRecordFactory
-
- All Implemented Interfaces:
IRecordFactory
- Direct Known Subclasses:
DefaultRecordFactory
public abstract class AbstractRecordFactory extends java.lang.Object implements IRecordFactory
The factory to create and parse theRecord
.
-
-
Constructor Summary
Constructors Constructor Description AbstractRecordFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Record
parseRecord(com.google.gson.JsonObject jsonObj)
Parse the record from JSON format.-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.ibm.dbb.build.report.records.IRecordFactory
createRecord, getAllSupportedTypes
-
-
-
-
Method Detail
-
parseRecord
public Record parseRecord(com.google.gson.JsonObject jsonObj)
Parse the record from JSON format.- Specified by:
parseRecord
in interfaceIRecordFactory
- Parameters:
jsonObj
- The object in JSON to be parsed.- Returns:
- the Record.
-
-