public static enum ImageInfo.Size extends Enum<ImageInfo.Size>
ImageInfo.getImageUri(Size, Resolution)).| Enum Constant and Description |
|---|
DEFAULT_SIZE
Represents the default size for whatever type of image this is.
|
SMALL_SIZE
Represents a standard smaller size that may be defined for some types of images.
|
| Modifier and Type | Method and Description |
|---|---|
static ImageInfo.Size |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageInfo.Size[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageInfo.Size DEFAULT_SIZE
public static final ImageInfo.Size SMALL_SIZE
public static ImageInfo.Size[] values()
for (ImageInfo.Size c : ImageInfo.Size.values()) System.out.println(c);
public static ImageInfo.Size 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 © 2016 Atlassian. All rights reserved.