public enum ImageAnchorTypeEnum extends Enum<ImageAnchorTypeEnum> implements NamedEnum
Enum Constant and Description |
---|
MOVE_NO_SIZE
Constant useful for specifying the
Move but don't size with cells anchor type in Excel. |
MOVE_SIZE
Constant useful for specifying the
Move and size with cells anchor type in Excel. |
NO_MOVE_NO_SIZE
Constant useful for specifying the
Don't move or size with cells anchor type in Excel. |
Modifier and Type | Method and Description |
---|---|
static ImageAnchorTypeEnum |
getByName(String name) |
String |
getName() |
byte |
getValue() |
static ImageAnchorTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageAnchorTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageAnchorTypeEnum MOVE_SIZE
Move and size with cells
anchor type in Excel.public static final ImageAnchorTypeEnum MOVE_NO_SIZE
Move but don't size with cells
anchor type in Excel.public static final ImageAnchorTypeEnum NO_MOVE_NO_SIZE
Don't move or size with cells
anchor type in Excel.public static ImageAnchorTypeEnum[] values()
for (ImageAnchorTypeEnum c : ImageAnchorTypeEnum.values()) System.out.println(c);
public static ImageAnchorTypeEnum 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 final byte getValue()
public static ImageAnchorTypeEnum getByName(String name)
Copyright © 2016. All rights reserved.