Enum IsoKey

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<IsoKey>

    public enum IsoKey
    extends java.lang.Enum<IsoKey>
    Type of object to conform.
    • Enum Constant Detail

      • CANVAS_STACK

        public static final IsoKey CANVAS_STACK
      • FILL_COLOR

        public static final IsoKey FILL_COLOR
      • EXTENDED_GRAPHICS_STATE

        public static final IsoKey EXTENDED_GRAPHICS_STATE
      • INLINE_IMAGE

        public static final IsoKey INLINE_IMAGE
      • PAGE

        public static final IsoKey PAGE
      • PDF_OBJECT

        public static final IsoKey PDF_OBJECT
      • RENDERING_INTENT

        public static final IsoKey RENDERING_INTENT
      • STROKE_COLOR

        public static final IsoKey STROKE_COLOR
      • TAG_STRUCTURE_ELEMENT

        public static final IsoKey TAG_STRUCTURE_ELEMENT
      • FONT_GLYPHS

        public static final IsoKey FONT_GLYPHS
      • XREF_TABLE

        public static final IsoKey XREF_TABLE
      • SIGNATURE

        public static final IsoKey SIGNATURE
      • SIGNATURE_TYPE

        public static final IsoKey SIGNATURE_TYPE
      • CRYPTO

        public static final IsoKey CRYPTO
      • FONT

        public static final IsoKey FONT
      • CANVAS_BEGIN_MARKED_CONTENT

        public static final IsoKey CANVAS_BEGIN_MARKED_CONTENT
      • CANVAS_WRITING_CONTENT

        public static final IsoKey CANVAS_WRITING_CONTENT
      • LAYOUT

        public static final IsoKey LAYOUT
      • DUPLICATE_ID_ENTRY

        public static final IsoKey DUPLICATE_ID_ENTRY
    • Constructor Detail

      • IsoKey

        private IsoKey()
    • Method Detail

      • values

        public static IsoKey[] 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 (IsoKey c : IsoKey.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static IsoKey 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 name
        java.lang.NullPointerException - if the argument is null