-
com.grapecity.documents.excel
-
- AsyncCustomFunction
- BaseCellType
- ButtonCellType
- CalcReference
- CancellationToken
- CancellationTokenSource
- CellColorSortField
- CellDecoration
- CellDecorationIcon
- CellInfo
- CellPadding
- CheckBoxCellType
- CheckBoxListCellType
- Color
- ColorUtilities
- ComboBoxCellItem
- ComboBoxCellType
- CornerFold
- CsvOpenOptions
- CsvParseContext
- CsvParseResult
- CsvSaveOptions
- CustomBorderStyle
- CustomFunction
- DataImportOptions
- DataImportResult
- DataValidationJsonError
- DateInfo
- DeserializationOptions
- DocumentProperties
- Event
- EventArgs
- FindOptions
- FontColorSortField
- FontInfo
- FormulaJsonError
- HyperLinkCellType
- IconSortField
- ImageSaveOptions
- ImageSource
- JsonError
- Margin
- OpenOptionsBase
- PageContentInfo
- PageInfo
- PagePrintedEventArgs
- PagePrintEventArgs
- PagePrintingEventArgs
- PageSettings
- Parameter
- PasteOption
- PdfSaveOptions
- PdfSecurityOptions
- PivotFilterOptions
- Point
- PrintManager
- RadioButtonListCellType
- RangeEventArgs
- RangeFindReplace
- RangeFindReplace.FindReplaceImpl
- RangePartialClasses
- RangePartialClasses.FindReplaceImpl
- RangeTemplateCellType
- Rectangle
- RepeatSetting
- ReplaceOptions
- SaveOptionsBase
- SelectFieldItem
- SerializationOptions
- SheetEventArgs
- SignatureDetails
- Size
- SjsOpenOptions
- SjsSaveOptions
- SortFieldBase
- SpecialCellsValue
- TableStyleFactory
- TextFormatInfo
- Theme
- Themes
- ThemeStorage
- ValueSortField
- WebRequestResult
- Workbook
- WorkbookOptions
- WriteProtection
- XlsmOpenOptions
- XlsmSaveOptions
- XlsxOpenOptions
- XlsxSaveOptions
- XltxOpenOptions
- XltxSaveOptions
-
- com.grapecity.documents.excel.drawing
- com.grapecity.documents.excel.expressions
- com.grapecity.documents.excel.forms
- com.grapecity.documents.excel.template
- com.grapecity.documents.excel.template.DataSource
(Showing Draft Content)
Parameter
Class Parameter
java.lang.Object
com.grapecity.documents.excel.Parameter
Represents the parameter of a function.
-
Constructor Summary
ConstructorsConstructorDescriptionParameter(FunctionValueType valueType) Initializes an instance of a parameter.Parameter(FunctionValueType valueType, boolean acceptReference) Initializes an instance of a parameter.Parameter(FunctionValueType valueType, boolean acceptReference, boolean acceptCustomObjects) Initializes an instance of a parameter.Parameter(FunctionValueType valueType, Object defaultValue) Initializes an instance of a parameter.Parameter(FunctionValueType valueType, Object defaultValue, boolean acceptReference) Initializes an instance of a parameter.Parameter(String name, String description, FunctionValueType valueType, Object defaultValue) Initializes an instance of a parameter.Parameter(String name, String description, FunctionValueType valueType, Object defaultValue, boolean acceptReference) Initializes an instance of a parameter.Parameter(String name, String description, FunctionValueType valueType, Object defaultValue, boolean acceptReference, boolean acceptCustomObjects) Initializes an instance of a parameter. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanGets the parameter can or can't accept reference.final ObjectGets the default value of the parameter.final StringGets the description of the parameter.final StringgetName()Gets the name of the parameter.final FunctionValueTypeGets the value type of the parameter.
-
Constructor Details
-
Parameter
Initializes an instance of a parameter.- Parameters:
valueType- The value type of the parameter.
-
Parameter
Initializes an instance of a parameter.- Parameters:
valueType- The value type of the parameter.acceptReference- If this parameter can accept reference.
-
Parameter
Initializes an instance of a parameter.- Parameters:
valueType- The value type of the parameter.defaultValue- The default value of the parameter.
-
Parameter
Initializes an instance of a parameter.- Parameters:
valueType- The value type of the parameter.defaultValue- The default value of the parameter.acceptReference- If this parameter can accept reference.
-
Parameter
Initializes an instance of a parameter.- Parameters:
name- The name of the parameter.description- The description of the parameter.valueType- The value type of the parameter.defaultValue- The default value of the parameter.
-
Parameter
public Parameter(String name, String description, FunctionValueType valueType, Object defaultValue, boolean acceptReference) Initializes an instance of a parameter.- Parameters:
name- The name of the parameter.description- The description of the parameter.valueType- The value type of the parameter.defaultValue- The default value of the parameter.acceptReference- If this parameter can accept reference.
-
Parameter
Initializes an instance of a parameter.- Parameters:
valueType- The value type of the parameter.acceptReference- If this parameter can accept reference.acceptCustomObjects- Accepts custom objects if value type isFunctionValueType.Object.
-
Parameter
public Parameter(String name, String description, FunctionValueType valueType, Object defaultValue, boolean acceptReference, boolean acceptCustomObjects) Initializes an instance of a parameter.- Parameters:
name- The name of the function.description- The description of the parameter.valueType- The value type of the parameter.defaultValue- The default value of the parameter.acceptReference- If this parameter can accept reference.acceptCustomObjects- Accepts custom objects if value type isFunctionValueType.Object.
-
-
Method Details
-
getName
Gets the name of the parameter. -
getDescription
Gets the description of the parameter. -
getValueType
Gets the value type of the parameter. -
getDefaultValue
Gets the default value of the parameter. -
getAcceptReference
public final boolean getAcceptReference()Gets the parameter can or can't accept reference.
-