Package com.itextpdf.text.pdf
Enum PdfDiv.DisplayType
- java.lang.Object
-
- java.lang.Enum<PdfDiv.DisplayType>
-
- com.itextpdf.text.pdf.PdfDiv.DisplayType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PdfDiv.DisplayType>
- Enclosing class:
- PdfDiv
public static enum PdfDiv.DisplayType extends java.lang.Enum<PdfDiv.DisplayType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLOCK
INLINE
INLINE_BLOCK
INLINE_TABLE
LIST_ITEM
NONE
RUN_IN
TABLE
TABLE_CAPTION
TABLE_CELL
TABLE_COLUMN
TABLE_COLUMN_GROUP
TABLE_FOOTER_GROUP
TABLE_HEADER_GROUP
TABLE_ROW
TABLE_ROW_GROUP
-
Constructor Summary
Constructors Modifier Constructor Description private
DisplayType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PdfDiv.DisplayType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PdfDiv.DisplayType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final PdfDiv.DisplayType NONE
-
BLOCK
public static final PdfDiv.DisplayType BLOCK
-
INLINE
public static final PdfDiv.DisplayType INLINE
-
INLINE_BLOCK
public static final PdfDiv.DisplayType INLINE_BLOCK
-
INLINE_TABLE
public static final PdfDiv.DisplayType INLINE_TABLE
-
LIST_ITEM
public static final PdfDiv.DisplayType LIST_ITEM
-
RUN_IN
public static final PdfDiv.DisplayType RUN_IN
-
TABLE
public static final PdfDiv.DisplayType TABLE
-
TABLE_CAPTION
public static final PdfDiv.DisplayType TABLE_CAPTION
-
TABLE_CELL
public static final PdfDiv.DisplayType TABLE_CELL
-
TABLE_COLUMN_GROUP
public static final PdfDiv.DisplayType TABLE_COLUMN_GROUP
-
TABLE_COLUMN
public static final PdfDiv.DisplayType TABLE_COLUMN
-
TABLE_FOOTER_GROUP
public static final PdfDiv.DisplayType TABLE_FOOTER_GROUP
-
TABLE_HEADER_GROUP
public static final PdfDiv.DisplayType TABLE_HEADER_GROUP
-
TABLE_ROW
public static final PdfDiv.DisplayType TABLE_ROW
-
TABLE_ROW_GROUP
public static final PdfDiv.DisplayType TABLE_ROW_GROUP
-
-
Method Detail
-
values
public static PdfDiv.DisplayType[] 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 (PdfDiv.DisplayType c : PdfDiv.DisplayType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PdfDiv.DisplayType 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
-
-