public static enum Picture.Format extends Enum<Picture.Format>
Modifier and Type | Method and Description |
---|---|
static Picture.Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Picture.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Picture.Format EMF
public static final Picture.Format WMF
public static final Picture.Format PICT
public static final Picture.Format JPEG
public static final Picture.Format PNG
public static final Picture.Format DIB
public static Picture.Format[] values()
for (Picture.Format c : Picture.Format.values()) System.out.println(c);
public static Picture.Format 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 nullCopyright © 2020. All rights reserved.