public enum ApplicationLicensingStatus extends Enum<ApplicationLicensingStatus>
Enum Constant and Description |
---|
LOADING |
NOT_CONFIGURED |
PRESENT |
Modifier and Type | Method and Description |
---|---|
static ApplicationLicensingStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationLicensingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationLicensingStatus NOT_CONFIGURED
public static final ApplicationLicensingStatus LOADING
public static final ApplicationLicensingStatus PRESENT
public static ApplicationLicensingStatus[] values()
for (ApplicationLicensingStatus c : ApplicationLicensingStatus.values()) System.out.println(c);
public static ApplicationLicensingStatus 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 © 2020 Atlassian. All rights reserved.