public enum CatPictureFormat extends java.lang.Enum<CatPictureFormat>
Enum Constant and Description |
---|
catPictureCCITTG3 |
catPictureJPEG |
catPictureNONE |
catPicturePNG |
Modifier and Type | Method and Description |
---|---|
static CatPictureFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CatPictureFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatPictureFormat catPictureNONE
public static final CatPictureFormat catPicturePNG
public static final CatPictureFormat catPictureJPEG
public static final CatPictureFormat catPictureCCITTG3
public static CatPictureFormat[] values()
for (CatPictureFormat c : CatPictureFormat.values()) System.out.println(c);
public static CatPictureFormat 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