public enum AttributeName extends Enum<AttributeName>
Enum Constant and Description |
---|
r
行列号属性,行标签下此为行号属性名,cell标签下下为列号属性名
|
s
ST(StylesTable) 的索引,样式index,用于获取行或单元格样式
|
t
Type类型,单元格类型属性,见
CellDataType |
Modifier and Type | Method and Description |
---|---|
String |
getValue(Attributes attributes)
从属性里列表中获取对应属性值
|
boolean |
match(String attributeName)
是否匹配给定属性
|
static AttributeName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeName r
public static final AttributeName s
public static final AttributeName t
CellDataType
public static AttributeName[] values()
for (AttributeName c : AttributeName.values()) System.out.println(c);
public static AttributeName valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic boolean match(String attributeName)
attributeName
- 属性public String getValue(Attributes attributes)
attributes
- 属性列表Copyright © 2024. All rights reserved.