Enum JsonPageSize

  • All Implemented Interfaces:
    java.io.Serializable , kotlin.Comparable

    
    public enum JsonPageSize
    extends Enum<JsonPageSize>
                        

    The page size of the pdf document.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      LETTER

      Letter page size.

      LEGAL

      Legal page size.

      A3

      A3 page size.

      A4

      A4 page size.

      A5

      A5 page size.

      B4

      B4 page size.

      B5

      B5 page size.

      EXECUTIVE

      Executive page size.

      US4x6

      US4x6 page size.

      US4x8

      US4x8 page size.

      US5x7

      US5x7 page size.

      COMM10

      COMM10 page size.

      CUSTOM

      Custom page size. From the Image.

    • Method Summary

      Modifier and Type Method Description
      final JsonPageSize valueOf(String value) Returns the enum constant of this type with the specified name.
      final Array<JsonPageSize> values() Returns an array containing the constants of this enum type, in the order they're declared.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • valueOf

         final JsonPageSize valueOf(String value)

        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.)

      • values

         final Array<JsonPageSize> 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.