Class Processors


  • public abstract class Processors
    extends java.lang.Object

    Utility class that provides simplified access to processors for different file formats. At the moment three implementations of processors are available: "eps", "pdf", and "svg"

    A new processor can be retrieved by calling the get(String) method with the format name:

    Processor pdfProcessor = Processors.get("pdf");
    • Constructor Summary

      Constructors 
      Constructor Description
      Processors()
      Default constructor that prevents creation of class.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static Processor get​(java.lang.String format)  
      • Methods inherited from class java.lang.Object

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

      • Processors

        Processors()
        Default constructor that prevents creation of class.
    • Method Detail

      • get

        public static Processor get​(java.lang.String format)