Enum DocumentPrintNode.OutputReferenceBase

    • Enum Constant Detail

      • PAGEFORMAT

        public static final DocumentPrintNode.OutputReferenceBase PAGEFORMAT
        Reference base setting for the imageable area.
        The upper-left corner of the content to be printed will be printed at the upper-left corner of the imageable area. This setting is appropriate if the material to be printed does not contain borders (like photos etc.)
      • PAPER

        public static final DocumentPrintNode.OutputReferenceBase PAPER
        Reference base setting for the paper.
        The upper-left corner of the content to be printed will be printed at the upper-left corner of the paper. This setting is appropriate if the material to be printed does already contains borders like usually scanned pages, MO:DCA pages etc. do.
    • Method Detail

      • values

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

        public static DocumentPrintNode.OutputReferenceBase 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