public enum ImagePurpose extends Enum<ImagePurpose>
| Enum Constant and Description |
|---|
BANNER |
HERO |
LOGO |
SCREENSHOT |
THUMBNAIL |
TITLE_LOGO |
| Modifier and Type | Method and Description |
|---|---|
String |
getKey() |
static ImagePurpose |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImagePurpose[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImagePurpose LOGO
public static final ImagePurpose BANNER
public static final ImagePurpose SCREENSHOT
public static final ImagePurpose THUMBNAIL
public static final ImagePurpose TITLE_LOGO
public static final ImagePurpose HERO
public static ImagePurpose[] values()
for (ImagePurpose c : ImagePurpose.values()) System.out.println(c);
public static ImagePurpose 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 nullpublic String getKey()
Copyright © 2016 Atlassian. All rights reserved.