Package org.moeaframework.analysis.plot
Enum Class ImageFileType
- All Implemented Interfaces:
Serializable
,Comparable<ImageFileType>
,Constable
List of supported image file types.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionJoint Photographic Experts Group (JPEG) format, which often produces smaller file sizes but is lossy.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 TypeMethodDescriptionstatic ImageFileType
Determine the image file type from a file using its extension.Returns the file filter for this image file type.static ImageFileType
Returns the enum constant of this class with the specified name.static ImageFileType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PNG
Portable Network Graphic (PNG) format, a raster graphics file with lossless compression. -
JPEG
Joint Photographic Experts Group (JPEG) format, which often produces smaller file sizes but is lossy. -
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
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
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 nameNullPointerException
- if the argument is null
-
getFilter
Returns the file filter for this image file type.- Returns:
- the file filter
-
fromFile
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
-