public enum ExcelVerticalAlignType extends Enum<ExcelVerticalAlignType>
Enum Constant and Description |
---|
BOTTOM
下对齐
|
CENTER
居中对齐
|
DEFAULT
默认
|
DISTRIBUTED
分布对齐
|
JUSTIFY
两端对齐
|
TOP
上对齐
|
Modifier and Type | Method and Description |
---|---|
int |
getCode() |
static ExcelVerticalAlignType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExcelVerticalAlignType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcelVerticalAlignType DEFAULT
public static final ExcelVerticalAlignType TOP
public static final ExcelVerticalAlignType CENTER
public static final ExcelVerticalAlignType BOTTOM
public static final ExcelVerticalAlignType JUSTIFY
public static final ExcelVerticalAlignType DISTRIBUTED
public static ExcelVerticalAlignType[] values()
for (ExcelVerticalAlignType c : ExcelVerticalAlignType.values()) System.out.println(c);
public static ExcelVerticalAlignType 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 int getCode()
Copyright © 2024. All rights reserved.