public static enum ImageProvider.ImageType extends java.lang.Enum<ImageProvider.ImageType>
| Enum Constant and Description |
|---|
OTHER
Everything else, e.g.
|
SVG
Scalable vector graphics
|
| Modifier and Type | Method and Description |
|---|---|
static ImageProvider.ImageType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImageProvider.ImageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageProvider.ImageType SVG
public static final ImageProvider.ImageType OTHER
public static ImageProvider.ImageType[] values()
for (ImageProvider.ImageType c : ImageProvider.ImageType.values()) System.out.println(c);
public static ImageProvider.ImageType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null