Enum FontHeader.PanoseArmStyle
- java.lang.Object
-
- java.lang.Enum<FontHeader.PanoseArmStyle>
-
- org.apache.poi.common.usermodel.fonts.FontHeader.PanoseArmStyle
-
- All Implemented Interfaces:
Serializable
,Comparable<FontHeader.PanoseArmStyle>
- Enclosing class:
- FontHeader
public static enum FontHeader.PanoseArmStyle extends Enum<FontHeader.PanoseArmStyle>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANY
BENT_ARMS_DOUBLE_SERIF
BENT_ARMS_HORZ
BENT_ARMS_SINGLE_SERIF
BENT_ARMS_VERT
BENT_ARMS_WEDGE
NO_FIT
STRAIGHT_ARMS_DOUBLE_SERIF
STRAIGHT_ARMS_HORZ
STRAIGHT_ARMS_SINGLE_SERIF
STRAIGHT_ARMS_VERT
STRAIGHT_ARMS_WEDGE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FontHeader.PanoseArmStyle
valueOf(String name)
Returns the enum constant of this type with the specified name.static FontHeader.PanoseArmStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANY
public static final FontHeader.PanoseArmStyle ANY
-
NO_FIT
public static final FontHeader.PanoseArmStyle NO_FIT
-
STRAIGHT_ARMS_HORZ
public static final FontHeader.PanoseArmStyle STRAIGHT_ARMS_HORZ
-
STRAIGHT_ARMS_WEDGE
public static final FontHeader.PanoseArmStyle STRAIGHT_ARMS_WEDGE
-
STRAIGHT_ARMS_VERT
public static final FontHeader.PanoseArmStyle STRAIGHT_ARMS_VERT
-
STRAIGHT_ARMS_SINGLE_SERIF
public static final FontHeader.PanoseArmStyle STRAIGHT_ARMS_SINGLE_SERIF
-
STRAIGHT_ARMS_DOUBLE_SERIF
public static final FontHeader.PanoseArmStyle STRAIGHT_ARMS_DOUBLE_SERIF
-
BENT_ARMS_HORZ
public static final FontHeader.PanoseArmStyle BENT_ARMS_HORZ
-
BENT_ARMS_WEDGE
public static final FontHeader.PanoseArmStyle BENT_ARMS_WEDGE
-
BENT_ARMS_VERT
public static final FontHeader.PanoseArmStyle BENT_ARMS_VERT
-
BENT_ARMS_SINGLE_SERIF
public static final FontHeader.PanoseArmStyle BENT_ARMS_SINGLE_SERIF
-
BENT_ARMS_DOUBLE_SERIF
public static final FontHeader.PanoseArmStyle BENT_ARMS_DOUBLE_SERIF
-
-
Method Detail
-
values
public static FontHeader.PanoseArmStyle[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FontHeader.PanoseArmStyle c : FontHeader.PanoseArmStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FontHeader.PanoseArmStyle valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-