public enum ImageFileType extends Enum<ImageFileType>
Enumerates the image file types.
Enum Constant and Description |
---|
Base64
Base64 image file type.
|
Dicom
Dicom image file type.
|
Svg
svg image file type.
|
Unknown
Unknown type.
|
Modifier and Type | Method and Description |
---|---|
static ImageFileType |
getByValue(int value) |
int |
getValue() |
static ImageFileType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageFileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageFileType Unknown
Unknown type.
public static final ImageFileType Svg
svg image file type.
public static final ImageFileType Dicom
Dicom image file type.
public static final ImageFileType Base64
Base64 image file type.
public static ImageFileType[] values()
for (ImageFileType c : ImageFileType.values()) System.out.println(c);
public static ImageFileType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getValue()
public static ImageFileType getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.