Package com.bumptech.glide.load
Enum Class ImageHeaderParser.ImageType
- All Implemented Interfaces:
Serializable,Comparable<ImageHeaderParser.ImageType>,java.lang.constant.Constable
- Enclosing interface:
- ImageHeaderParser
The format of the image data including whether or not the image may include transparent pixels.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAnimated Avif type (may contain alpha).All animated webps.Avif type (may contain alpha).PNG type without alpha.PNG type with alpha.Unrecognized type.WebP type without alpha.WebP type with alpha. -
Method Summary
Modifier and TypeMethodDescriptionbooleanhasAlpha()booleanisWebp()static ImageHeaderParser.ImageTypeReturns the enum constant of this class with the specified name.static ImageHeaderParser.ImageType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GIF
-
JPEG
-
RAW
-
PNG_A
PNG type with alpha. -
PNG
PNG type without alpha. -
WEBP_A
WebP type with alpha. -
WEBP
WebP type without alpha. -
ANIMATED_WEBP
All animated webps. -
AVIF
Avif type (may contain alpha). -
ANIMATED_AVIF
Animated Avif type (may contain alpha). -
UNKNOWN
Unrecognized type.
-
-
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
-
hasAlpha
public boolean hasAlpha() -
isWebp
public boolean isWebp()
-