Enum Class UsedRangeType
- 所有已实现的接口:
Serializable
,Comparable<UsedRangeType>
,Constable
Specifies the type of all supported features.
-
嵌套类概要
从类继承的嵌套类/接口 java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
枚举常量概要
枚举常量说明Specifies the axis type.Specifies the chart type.Specifies the comment type.Specifies the conditional formatting type.Specifies the data type.Specifies the data validation type.Specifies the filter type.Specifies the hyperlink type.Specifies the merge type.Specifies no type.Specifies the picture type.Specifies the pivot table type.Specifies the shape type.Specifies the slicer type.Specifies the sort type.Specifies the sparkline type.Specifies the style type.Specifies the table type. -
方法概要
修饰符和类型方法说明static UsedRangeType
Returns the enum constant of this class with the specified name.static UsedRangeType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
枚举常量详细资料
-
None
Specifies no type. -
Data
Specifies the data type. -
Style
Specifies the style type. -
Axis
Specifies the axis type. -
Chart
Specifies the chart type. -
Comment
Specifies the comment type. -
ConditionalFormatting
Specifies the conditional formatting type. -
DataValidation
Specifies the data validation type. -
Filter
Specifies the filter type. -
Hyperlink
Specifies the hyperlink type. -
Merge
Specifies the merge type. -
Picture
Specifies the picture type. -
PivotTable
Specifies the pivot table type. -
Slicer
Specifies the slicer type. -
Shape
Specifies the shape type. -
Sort
Specifies the sort type. -
Sparkline
Specifies the sparkline type. -
Table
Specifies the table type.
-
-
方法详细资料
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- 返回:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- 参数:
name
- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- 如果参数为空值
-