public enum SpendTargetType extends Enum<SpendTargetType>
Java class for SpendTargetType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SpendTargetType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="NONE"/>
<enumeration value="MINIMUM"/>
<enumeration value="MAXIMUM"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
MAXIMUM
A spend target that indicates that over the course of the performance target at
most the specified amount of money should be spent.
|
MINIMUM
A spend target that indicates that over the course of the performance target at
least the specified amount of money should be spent.
|
NONE
A value that is used to clear a spend target type when it has already been set.
|
UNKNOWN
Used for return value only.
|
| Modifier and Type | Method and Description |
|---|---|
static SpendTargetType |
fromValue(String v) |
String |
value() |
static SpendTargetType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpendTargetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpendTargetType UNKNOWN
public static final SpendTargetType NONE
public static final SpendTargetType MINIMUM
public static final SpendTargetType MAXIMUM
public static SpendTargetType[] values()
for (SpendTargetType c : SpendTargetType.values()) System.out.println(c);
public static SpendTargetType 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 SpendTargetType fromValue(String v)
Copyright © 2023. All rights reserved.