Enum Class Plot.FileType

java.lang.Object
java.lang.Enum<Plot.FileType>
org.moeaframework.analysis.plot.Plot.FileType
All Implemented Interfaces:
Serializable, Comparable<Plot.FileType>, Constable
Enclosing class:
Plot

public static enum Plot.FileType extends Enum<Plot.FileType>
List of supported file types when saving a plot.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Joint Photographic Experts Group (JPEG) format, which often produces smaller file sizes but is lossy.
    Same as JPEG.
    Portable Network Graphic (PNG) format, a raster graphics file with lossless compression.
    Scalable Vector Graphics (SVG) format, which stores images in a vector-based format instead of raster (pixel-based) format, allowing the image to scale to any dimension without artifacts.
  • Method Summary

    Modifier and Type
    Method
    Description
    Determine the file type from its string representation using case-insensitive matching.
    Returns the enum constant of this class with the specified name.
    static Plot.FileType[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • PNG

      public static final Plot.FileType PNG
      Portable Network Graphic (PNG) format, a raster graphics file with lossless compression.
    • JPG

      public static final Plot.FileType JPG
      Same as JPEG.
    • JPEG

      public static final Plot.FileType JPEG
      Joint Photographic Experts Group (JPEG) format, which often produces smaller file sizes but is lossy.
    • SVG

      public static final Plot.FileType SVG
      Scalable Vector Graphics (SVG) format, which stores images in a vector-based format instead of raster (pixel-based) format, allowing the image to scale to any dimension without artifacts. Use of this format requires the JFreeSVG library on the classpath.
  • Method Details

    • values

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

      public static Plot.FileType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • fromString

      public static Plot.FileType fromString(String value)
      Determine the file type from its string representation using case-insensitive matching.
      Parameters:
      value - the string representation of the file type
      Returns:
      the file type
      Throws:
      IllegalArgumentException - if the file type is not supported