public enum SpecialItemTypeEnum extends Enum<SpecialItemTypeEnum>
Java class for SpecialItemTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SpecialItemTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="FinanceCharge"/> <enumeration value="ReimbursableExpenseGroup"/> <enumeration value="ReimbursableExpenseSubtotal"/> </restriction> </simpleType>
Enum Constant and Description |
---|
FINANCE_CHARGE |
REIMBURSABLE_EXPENSE_GROUP |
REIMBURSABLE_EXPENSE_SUBTOTAL |
Modifier and Type | Method and Description |
---|---|
static SpecialItemTypeEnum |
fromValue(String v) |
String |
value() |
static SpecialItemTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpecialItemTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpecialItemTypeEnum FINANCE_CHARGE
public static final SpecialItemTypeEnum REIMBURSABLE_EXPENSE_GROUP
public static final SpecialItemTypeEnum REIMBURSABLE_EXPENSE_SUBTOTAL
public static SpecialItemTypeEnum[] values()
for (SpecialItemTypeEnum c : SpecialItemTypeEnum.values()) System.out.println(c);
public static SpecialItemTypeEnum 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 SpecialItemTypeEnum fromValue(String v)
Copyright © 2017. All rights reserved.