Package codedraw
Enum Class BufferedImageType
- All Implemented Interfaces:
Serializable
,Comparable<BufferedImageType>
,Constable
Describes the image type as defined in
BufferedImage
.
This enum is used when converting an Image
to an BufferedImage
in the Image.toBufferedImage(BufferedImageType)
method.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic BufferedImageType
Returns the enum constant of this class with the specified name.static BufferedImageType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CUSTOM
-
INT_RGB
-
INT_ARGB
-
INT_ARGB_PRE
-
INT_BGR
-
THREE_BYTE_BGR
-
FOUR_BYTE_ABGR
-
FOUR_BYTE_ABGR_PRE
-
USHORT_565_RGB
-
USHORT_555_RGB
-
BYTE_GRAY
-
USHORT_GRAY
-
BYTE_BINARY
-
BYTE_INDEXED
-
-
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
-