Enum ImageDetector.COMMON_IMAGES_FORMAT
- java.lang.Object
-
- java.lang.Enum<ImageDetector.COMMON_IMAGES_FORMAT>
-
- org.gcube.application.geoportaldatamapper.ImageDetector.COMMON_IMAGES_FORMAT
-
- All Implemented Interfaces:
Serializable,Comparable<ImageDetector.COMMON_IMAGES_FORMAT>
- Enclosing class:
- ImageDetector
public static enum ImageDetector.COMMON_IMAGES_FORMAT extends Enum<ImageDetector.COMMON_IMAGES_FORMAT>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ImageDetector.COMMON_IMAGES_FORMATvalueOf(String name)Returns the enum constant of this type with the specified name.static ImageDetector.COMMON_IMAGES_FORMAT[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
gif
public static final ImageDetector.COMMON_IMAGES_FORMAT gif
-
png
public static final ImageDetector.COMMON_IMAGES_FORMAT png
-
jpeg
public static final ImageDetector.COMMON_IMAGES_FORMAT jpeg
-
jpg
public static final ImageDetector.COMMON_IMAGES_FORMAT jpg
-
bmp
public static final ImageDetector.COMMON_IMAGES_FORMAT bmp
-
tif
public static final ImageDetector.COMMON_IMAGES_FORMAT tif
-
tiff
public static final ImageDetector.COMMON_IMAGES_FORMAT tiff
-
svg
public static final ImageDetector.COMMON_IMAGES_FORMAT svg
-
avif
public static final ImageDetector.COMMON_IMAGES_FORMAT avif
-
webp
public static final ImageDetector.COMMON_IMAGES_FORMAT webp
-
-
Method Detail
-
values
public static ImageDetector.COMMON_IMAGES_FORMAT[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ImageDetector.COMMON_IMAGES_FORMAT c : ImageDetector.COMMON_IMAGES_FORMAT.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImageDetector.COMMON_IMAGES_FORMAT valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-