com.itextpdf.text.pdf
Enum PdfDiv.DisplayType

java.lang.Object
  extended by java.lang.Enum<PdfDiv.DisplayType>
      extended by com.itextpdf.text.pdf.PdfDiv.DisplayType
All Implemented Interfaces:
Serializable, Comparable<PdfDiv.DisplayType>
Enclosing class:
PdfDiv

public static enum PdfDiv.DisplayType
extends Enum<PdfDiv.DisplayType>


Enum Constant Summary
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
           
 
Method Summary
static PdfDiv.DisplayType valueOf(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're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

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 final PdfDiv.DisplayType[] values()
Returns an array containing the constants of this enum type, in the order they're 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're declared

valueOf

public static PdfDiv.DisplayType 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 name


Copyright © 2015. All Rights Reserved.