Enum PerformanceCategory
- java.lang.Object
-
- java.lang.Enum<PerformanceCategory>
-
- com.evolveum.midpoint.schema.traces.PerformanceCategory
-
- All Implemented Interfaces:
Serializable
,Comparable<PerformanceCategory>
@Experimental public enum PerformanceCategory extends Enum<PerformanceCategory>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getLabel()
@NotNull List<PerformanceCategory>
getMinus()
@NotNull List<PerformanceCategory>
getPlus()
String
getShortLabel()
boolean
isDerived()
boolean
matches(OperationResultType operation)
static PerformanceCategory
valueOf(String name)
Returns the enum constant of this type with the specified name.static PerformanceCategory[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REPOSITORY
public static final PerformanceCategory REPOSITORY
-
REPOSITORY_READ
public static final PerformanceCategory REPOSITORY_READ
-
REPOSITORY_WRITE
public static final PerformanceCategory REPOSITORY_WRITE
-
REPOSITORY_OTHER
public static final PerformanceCategory REPOSITORY_OTHER
-
REPOSITORY_CACHE
public static final PerformanceCategory REPOSITORY_CACHE
-
REPOSITORY_CACHE_READ
public static final PerformanceCategory REPOSITORY_CACHE_READ
-
REPOSITORY_CACHE_WRITE
public static final PerformanceCategory REPOSITORY_CACHE_WRITE
-
INVALIDATE_CACHE_ENTRIES
public static final PerformanceCategory INVALIDATE_CACHE_ENTRIES
-
REPOSITORY_CACHE_OTHER
public static final PerformanceCategory REPOSITORY_CACHE_OTHER
-
MAPPING_EVALUATION
public static final PerformanceCategory MAPPING_EVALUATION
-
SCRIPT_EVALUATION
public static final PerformanceCategory SCRIPT_EVALUATION
-
NOTIFICATIONS
public static final PerformanceCategory NOTIFICATIONS
-
NOTIFICATION_TRANSPORTS
public static final PerformanceCategory NOTIFICATION_TRANSPORTS
-
AUDIT
public static final PerformanceCategory AUDIT
-
ICF
public static final PerformanceCategory ICF
-
ICF_READ
public static final PerformanceCategory ICF_READ
-
ICF_WRITE
public static final PerformanceCategory ICF_WRITE
-
ICF_SCHEMA
public static final PerformanceCategory ICF_SCHEMA
-
ICF_OTHER
public static final PerformanceCategory ICF_OTHER
-
EXTERNAL
public static final PerformanceCategory EXTERNAL
-
EXTERNAL_PLUS_REPO_CACHE
public static final PerformanceCategory EXTERNAL_PLUS_REPO_CACHE
-
-
Method Detail
-
values
public static PerformanceCategory[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PerformanceCategory c : PerformanceCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PerformanceCategory valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getShortLabel
public String getShortLabel()
-
getLabel
public String getLabel()
-
isDerived
public boolean isDerived()
-
getPlus
@NotNull public @NotNull List<PerformanceCategory> getPlus()
-
getMinus
@NotNull public @NotNull List<PerformanceCategory> getMinus()
-
matches
public boolean matches(OperationResultType operation)
-
-