Package org.moeaframework.analysis.plot
Enum Class Plot.FileType
- All Implemented Interfaces:
Serializable
,Comparable<Plot.FileType>
,Constable
- Enclosing class:
- Plot
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 ConstantDescriptionJoint Photographic Experts Group (JPEG) format, which often produces smaller file sizes but is lossy.Same asJPEG
.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 Plot.FileType
fromString
(String value) Determine the file type from its string representation using case-insensitive matching.static Plot.FileType
Returns the enum constant of this class with the specified name.static Plot.FileType[]
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. -
JPG
Same asJPEG
. -
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. Use of this format requires the JFreeSVG library on the classpath.
-
-
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
-
fromString
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
-