public enum AdjustmentReason extends java.lang.Enum<AdjustmentReason>
Enum Constant and Description |
---|
BadDebt
Transaction was adjusted due to bad or uncollectable debt
|
ExemptCertApplied
Transaction was adjusted after an exemption certificate was applied
|
NotAdjusted
The transaction has not been adjusted
|
Offline
Offline
|
Other
Transaction was adjusted for another reason not specified
|
PriceAdjusted
Transaction was adjusted when the price of an item changed
|
ProductExchanged
Transaction was adjusted due to a product exchange
|
ProductReturned
Transaction was adjusted due to a product return
|
ReconciledWithGeneralLedger
Transaction was adjusted to reconcile it with a general ledger
|
SourcingIssue
A sourcing issue existed which caused the transaction to be adjusted
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static AdjustmentReason |
valueOf(int intValue) |
static AdjustmentReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AdjustmentReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdjustmentReason NotAdjusted
public static final AdjustmentReason SourcingIssue
public static final AdjustmentReason ReconciledWithGeneralLedger
public static final AdjustmentReason ExemptCertApplied
public static final AdjustmentReason PriceAdjusted
public static final AdjustmentReason ProductReturned
public static final AdjustmentReason ProductExchanged
public static final AdjustmentReason BadDebt
public static final AdjustmentReason Other
public static final AdjustmentReason Offline
public static AdjustmentReason[] values()
for (AdjustmentReason c : AdjustmentReason.values()) System.out.println(c);
public static AdjustmentReason valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static AdjustmentReason valueOf(int intValue)
public int getValue()