public enum CostAdjustment extends Enum<CostAdjustment>
Java class for CostAdjustment.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CostAdjustment">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="NONE"/>
<enumeration value="MAKE_GOOD"/>
<enumeration value="BARTER"/>
<enumeration value="ADDED_VALUE"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ADDED_VALUE
Indicates that the cost adjustment of the
ProposalLineItem is added value. |
BARTER
Indicates that the cost adjustment of the
ProposalLineItem is barter. |
MAKE_GOOD
Indicates that the cost adjustment of the
ProposalLineItem is make good. |
NONE
Indicates that the
ProposalLineItem has no cost adjustment. |
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
| Modifier and Type | Method and Description |
|---|---|
static CostAdjustment |
fromValue(String v) |
String |
value() |
static CostAdjustment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CostAdjustment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CostAdjustment NONE
ProposalLineItem has no cost adjustment.public static final CostAdjustment MAKE_GOOD
ProposalLineItem is make good.public static final CostAdjustment BARTER
ProposalLineItem is barter.public static final CostAdjustment ADDED_VALUE
ProposalLineItem is added value.public static final CostAdjustment UNKNOWN
public static CostAdjustment[] values()
for (CostAdjustment c : CostAdjustment.values()) System.out.println(c);
public static CostAdjustment 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 CostAdjustment fromValue(String v)
Copyright © 2018. All Rights Reserved.