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