Enum Class ImageFileType

java.lang.Object
java.lang.Enum<ImageFileType>
org.moeaframework.analysis.plot.ImageFileType
All Implemented Interfaces:
Serializable, Comparable<ImageFileType>, Constable

public enum ImageFileType extends Enum<ImageFileType>
List of supported image file types.
  • Enum Constant Details

    • PNG

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

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

      public static final ImageFileType 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.
  • Method Details

    • values

      public static ImageFileType[] 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 ImageFileType 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
    • getFilter

      public FileNameExtensionFilter getFilter()
      Returns the file filter for this image file type.
      Returns:
      the file filter
    • fromFile

      public static ImageFileType fromFile(File file)
      Determine the image file type from a file using its extension.
      Parameters:
      file - the file
      Returns:
      the file type
      Throws:
      IllegalArgumentException - if the file type is not supported