public static enum DbxFileSystem.ThumbSize extends java.lang.Enum<DbxFileSystem.ThumbSize>
Enum Constant and Description |
---|
L
Thumbnail scaled to fit in a 640x480 bounding box.
|
M
Thumbnail scaled to fit in a 128x128 bounding box.
|
S
Thumbnail scaled to fit in a 64x64 bounding box.
|
XL
Thumbnail scaled to fit in a 1024x768 bounding box.
|
XS
Thumbnail scaled to fit in a 32x32 bounding box.
|
Modifier and Type | Method and Description |
---|---|
static DbxFileSystem.ThumbSize |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DbxFileSystem.ThumbSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DbxFileSystem.ThumbSize XS
public static final DbxFileSystem.ThumbSize S
public static final DbxFileSystem.ThumbSize M
public static final DbxFileSystem.ThumbSize L
public static final DbxFileSystem.ThumbSize XL
public static DbxFileSystem.ThumbSize[] values()
for (DbxFileSystem.ThumbSize c : DbxFileSystem.ThumbSize.values()) System.out.println(c);
public static DbxFileSystem.ThumbSize 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