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