Enum OutputItemGroup

java.lang.Object
java.lang.Enum<OutputItemGroup>
com.realobjects.pdfreactor.OutputItemGroup
All Implemented Interfaces:
Serializable, Comparable<OutputItemGroup>, java.lang.constant.Constable

public enum OutputItemGroup extends Enum<OutputItemGroup>
An emum representing the type of OutputItem.
  • Enum Constant Details

    • DOCUMENT

      public static final OutputItemGroup DOCUMENT
      This group represents the entire document. It does not distinguish between PAGE and LOG.
    • PAGE

      public static final OutputItemGroup PAGE
      This group represents a single document page during a multi-image conversion.
    • LOG

      public static final OutputItemGroup LOG
      This group represents a single log page that has been generated after the main document finished.
  • Method Details

    • values

      public static OutputItemGroup[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static OutputItemGroup 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
      NullPointerException - if the argument is null
    • getText

      public String getText()