public static enum BoxFile.ThumbnailFileType extends Enum<BoxFile.ThumbnailFileType>
Enum Constant and Description |
---|
JPG
JPG image format.
|
PNG
PNG image format.
|
Modifier and Type | Method and Description |
---|---|
static BoxFile.ThumbnailFileType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoxFile.ThumbnailFileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoxFile.ThumbnailFileType PNG
public static final BoxFile.ThumbnailFileType JPG
public static BoxFile.ThumbnailFileType[] values()
for (BoxFile.ThumbnailFileType c : BoxFile.ThumbnailFileType.values()) System.out.println(c);
public static BoxFile.ThumbnailFileType 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 null