public enum CoverageArea extends Enum<CoverageArea>
Enum Constant and Description |
---|
AUDIT_LOG |
ECOSYSTEM |
END_USER_ACTIVITY |
GLOBAL_CONFIG_AND_ADMINISTRATION |
LOCAL_CONFIG_AND_ADMINISTRATION |
PERMISSIONS |
SECURITY |
USER_MANAGEMENT |
Modifier and Type | Method and Description |
---|---|
static CoverageArea |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoverageArea[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoverageArea AUDIT_LOG
public static final CoverageArea GLOBAL_CONFIG_AND_ADMINISTRATION
public static final CoverageArea USER_MANAGEMENT
public static final CoverageArea PERMISSIONS
public static final CoverageArea LOCAL_CONFIG_AND_ADMINISTRATION
public static final CoverageArea SECURITY
public static final CoverageArea END_USER_ACTIVITY
public static final CoverageArea ECOSYSTEM
public static CoverageArea[] values()
for (CoverageArea c : CoverageArea.values()) System.out.println(c);
public static CoverageArea 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.