Package com.atlan.samples.readers
Interface AssetGenerator
-
public interface AssetGenerator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.atlan.model.assets.Asset
buildFromRow(java.util.List<java.lang.String> row, java.util.List<java.lang.String> header, int typeIdx, int qnIdx)
Interface to generate an asset from the values of a row.
-
-
-
Method Detail
-
buildFromRow
com.atlan.model.assets.Asset buildFromRow(java.util.List<java.lang.String> row, java.util.List<java.lang.String> header, int typeIdx, int qnIdx)
Interface to generate an asset from the values of a row.- Parameters:
row
- the row of values from which to build the assetheader
- list of field names in the same order as columns in the CSVtypeIdx
- numeric index within the columns of the typeName fieldqnIdx
- numeric index within the columns of the qualifiedName field- Returns:
- the asset built from the values on the row
-
-