Interface ITaskOption
- All Known Subinterfaces:
IDataExtractionOption
,IExcelRenderOption
,IExtractionOption
,IHTMLRenderOption
,IPDFRenderOption
,IPostscriptRenderOption
,IPPTRenderOption
,IRenderOption
- All Known Implementing Classes:
DataExtractionOption
,DocxRenderOption
,EXCELRenderOption
,HTMLEmitterConfig
,HTMLRenderOption
,PDFRenderOption
,RenderOption
,RenderOptionBase
,TaskOption
public interface ITaskOption
Define the interface of task options
- Since:
- 3.3
-
Method Summary
Modifier and TypeMethodDescriptionget the option value defined by the name.Get all the options defined in this objectboolean
if there exits an option named by name.void
set the option value.
-
Method Details
-
getOptions
Get all the options defined in this object- Returns:
- Return the task options
-
setOption
set the option value.- Parameters:
name
- option name.value
- value
-
getOption
get the option value defined by the name.- Parameters:
name
- option name.- Returns:
- value, null if not defined
-
hasOption
if there exits an option named by name.- Parameters:
name
- option name.- Returns:
- true if user has defined an option with this name, even if the value is NULL. false otherwise.
-