Class ExcelExporterProvider
- java.lang.Object
-
- com.mendix.modules.exportmanager.excel.internal.ExcelExporterProvider
-
public class ExcelExporterProvider extends java.lang.ObjectThe (internal) provider for obtaining Excel exporters. This is an internal class that is not to be used and may change at any time.
-
-
Field Summary
Fields Modifier and Type Field Description static java.util.concurrent.ConcurrentHashMap<java.lang.String,ExcelExporterDelegate>excelExportersAll Excel exporters by Mendix instance ID.
-
Constructor Summary
Constructors Constructor Description ExcelExporterProvider()
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ExcelExporterDelegateget()Deprecated.useget(IContext)insteadstatic ExcelExporterDelegateget(IContext context)Returns an exporter for Excel documents for the current Mendix runtime server.
-
-
-
Field Detail
-
excelExporters
public static final java.util.concurrent.ConcurrentHashMap<java.lang.String,ExcelExporterDelegate> excelExporters
All Excel exporters by Mendix instance ID.
-
-
Method Detail
-
get
public static ExcelExporterDelegate get(IContext context)
Returns an exporter for Excel documents for the current Mendix runtime server.- Parameters:
context- the context for determining the current Mendix runtime server- Returns:
- the Excel exporter
-
get
@Deprecated public static ExcelExporterDelegate get()
Deprecated.useget(IContext)insteadReturns an exporter for Excel documents.- Returns:
- the Excel exporter
-
-