Package com.itextpdf.layout.properties
Enum InlineVerticalAlignmentType
- java.lang.Object
-
- java.lang.Enum<InlineVerticalAlignmentType>
-
- com.itextpdf.layout.properties.InlineVerticalAlignmentType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<InlineVerticalAlignmentType>
public enum InlineVerticalAlignmentType extends java.lang.Enum<InlineVerticalAlignmentType>
The possible values forInlineVerticalAlignment.getType()
.
-
-
Constructor Summary
Constructors Modifier Constructor Description private
InlineVerticalAlignmentType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InlineVerticalAlignmentType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static InlineVerticalAlignmentType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BASELINE
public static final InlineVerticalAlignmentType BASELINE
-
TEXT_TOP
public static final InlineVerticalAlignmentType TEXT_TOP
-
TEXT_BOTTOM
public static final InlineVerticalAlignmentType TEXT_BOTTOM
-
SUB
public static final InlineVerticalAlignmentType SUB
-
SUPER
public static final InlineVerticalAlignmentType SUPER
-
FIXED
public static final InlineVerticalAlignmentType FIXED
Fixed is used when a length value is given in css. It needs a companion value inInlineVerticalAlignment.setValue(float)
-
FRACTION
public static final InlineVerticalAlignmentType FRACTION
Fixed is used when a percentage value is given in css. It needs a companion value inInlineVerticalAlignment.setValue(float)
-
MIDDLE
public static final InlineVerticalAlignmentType MIDDLE
-
TOP
public static final InlineVerticalAlignmentType TOP
-
BOTTOM
public static final InlineVerticalAlignmentType BOTTOM
-
-
Method Detail
-
values
public static InlineVerticalAlignmentType[] 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 (InlineVerticalAlignmentType c : InlineVerticalAlignmentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InlineVerticalAlignmentType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-