public static enum ImageInfo.Resolution extends Enum<ImageInfo.Resolution>
ImageInfo.getImageUri(Size, Resolution)).| Enum Constant and Description |
|---|
DEFAULT_RESOLUTION
Represents the default resolution for the image.
|
HIGH_RESOLUTION
Represents a higher-resolution version of the image that may or may not be available.
|
| Modifier and Type | Method and Description |
|---|---|
static ImageInfo.Resolution |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageInfo.Resolution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageInfo.Resolution DEFAULT_RESOLUTION
public static final ImageInfo.Resolution HIGH_RESOLUTION
public static ImageInfo.Resolution[] values()
for (ImageInfo.Resolution c : ImageInfo.Resolution.values()) System.out.println(c);
public static ImageInfo.Resolution 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.