public enum PerformanceTargetStatus extends Enum<PerformanceTargetStatus>
Java class for PerformanceTargetStatus.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PerformanceTargetStatus">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="ACTIVE_NEEDS_ATTENTION"/>
<enumeration value="ACTIVE_ON_TRACK"/>
<enumeration value="ACTIVE_TARGET_MET"/>
<enumeration value="ACTIVE_INCONCLUSIVE"/>
<enumeration value="ACTIVE_NO_TARGETS"/>
<enumeration value="PAST_TARGET_MISSED"/>
<enumeration value="PAST_TARGET_MET"/>
<enumeration value="PAST_INCONCLUSIVE"/>
<enumeration value="PAST_MISSING_DATA"/>
<enumeration value="PAST_NO_TARGETS"/>
<enumeration value="NOT_YET_STARTED"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ACTIVE_INCONCLUSIVE
A status that describes an active performance target for which we are not able
to make a status determination with certainty.
|
ACTIVE_NEEDS_ATTENTION
A status that describes an active performance target that is likely to miss its
targets.
|
ACTIVE_NO_TARGETS
A status that describes an active performance target that does not have any
targets set.
|
ACTIVE_ON_TRACK
A status that describes an active performance target that is on track to meet
its targets.
|
ACTIVE_TARGET_MET
A status that describes an active performance target with a defined spend or
volume target that has already been met.
|
NOT_YET_STARTED
A status that describes a performance target that has not yet started.
|
PAST_INCONCLUSIVE
A status that describes a performance target that has recently ended, but we do
not yet have all the information necessary to make a target met or missed
determination.
|
PAST_MISSING_DATA
A status that describes a performance target that has ended and has no stats
information in its time range and therefore cannot cannot make a target met or
missed determination.
|
PAST_NO_TARGETS
A status that describes a performance target that has ended but does not have
any targets defined for it.
|
PAST_TARGET_MET
A status that describes a performance target that has ended and met the targets
that were set for it.
|
PAST_TARGET_MISSED
A status that describes a performance target that has ended and missed the
targets that were set for it.
|
UNKNOWN
Used for return value only.
|
| Modifier and Type | Method and Description |
|---|---|
static PerformanceTargetStatus |
fromValue(String v) |
String |
value() |
static PerformanceTargetStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PerformanceTargetStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PerformanceTargetStatus UNKNOWN
public static final PerformanceTargetStatus ACTIVE_NEEDS_ATTENTION
public static final PerformanceTargetStatus ACTIVE_ON_TRACK
public static final PerformanceTargetStatus ACTIVE_TARGET_MET
public static final PerformanceTargetStatus ACTIVE_INCONCLUSIVE
public static final PerformanceTargetStatus ACTIVE_NO_TARGETS
public static final PerformanceTargetStatus PAST_TARGET_MISSED
public static final PerformanceTargetStatus PAST_TARGET_MET
public static final PerformanceTargetStatus PAST_INCONCLUSIVE
public static final PerformanceTargetStatus PAST_MISSING_DATA
public static final PerformanceTargetStatus PAST_NO_TARGETS
public static final PerformanceTargetStatus NOT_YET_STARTED
public static PerformanceTargetStatus[] values()
for (PerformanceTargetStatus c : PerformanceTargetStatus.values()) System.out.println(c);
public static PerformanceTargetStatus 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 value()
public static PerformanceTargetStatus fromValue(String v)
Copyright © 2023. All rights reserved.