public static enum CacheUtils.PICTURE extends Enum<CacheUtils.PICTURE>
Enum Constant and Description |
---|
BOTH
Both of them
|
CUBEMAP
Streetside cubemap
|
FULL_IMAGE
Full quality picture (2048 p)
|
THUMBNAIL
Thumbnail quality picture (320 p)
|
Modifier and Type | Method and Description |
---|---|
static CacheUtils.PICTURE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CacheUtils.PICTURE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheUtils.PICTURE THUMBNAIL
public static final CacheUtils.PICTURE FULL_IMAGE
public static final CacheUtils.PICTURE BOTH
public static final CacheUtils.PICTURE CUBEMAP
public static CacheUtils.PICTURE[] values()
for (CacheUtils.PICTURE c : CacheUtils.PICTURE.values()) System.out.println(c);
public static CacheUtils.PICTURE 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