Interface NativeObjectContainerFactory<T extends NativeObjectContainer>
-
- All Known Subinterfaces:
ChartContextElementFactory
,ChartElementFactory
,ElementFactory<T>
- All Known Implementing Classes:
AbstractElementFactory
,ArcBorderRadius.ArcBorderRadiusFactory
,BarBorderRadius.BarBorderRadiusFactory
,BarBorderWidth.BarBorderWidthFactory
,BubbleMapDataPoint.BubbleMapDataPointFactory
,ChoroplethDataPoint.ChoroplethDataPointFactory
,ControllerMapperFactory
,DateAdapterOptions.DateAdaptersOptionsFactory
,DateTimeFormatOptions.DateTimeFormatOptionsFactory
,LegendItem.LegendItemFactory
,LegendLabelItem.LegendLabelItemFactory
,MatrixDataPoint.MatrixDataPointFactory
,NumberFormatOptions.NumberFormatOptionsFactory
,SankeyDataPoint.SankeyDataPointFactory
,SankeyDataset.DataPointFactory
,ScaleTickItem.ScaleTickItemFactory
,TooltipItem.TooltipItemFactory
,TooltipLabelColor.TooltipLabelColorFactory
,TooltipLabelPointStyle.TooltipLabelPointStyleFactory
,TreeMapDataPoint.TreeMapDataPointFactory
public interface NativeObjectContainerFactory<T extends NativeObjectContainer>
Interface to be implemented to load elements from an array of native object.- Author:
- Andrea "Stock" Stocchero
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default T
create()
Creates a native object container instance by an empty native object.T
create(NativeObject nativeObject)
Creates a native object container instance by a native object.
-
-
-
Method Detail
-
create
default T create()
Creates a native object container instance by an empty native object.- Returns:
- native object container element instance
-
create
T create(NativeObject nativeObject)
Creates a native object container instance by a native object.- Parameters:
nativeObject
- native object- Returns:
- native object container element instance
-
-