Package org.mustangproject
Enum EStandard
- java.lang.Object
-
- java.lang.Enum<EStandard>
-
- org.mustangproject.EStandard
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ciidespatchadvicefacturxorderxublubl_creditnoteubldespatchadvicezugferd
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EStandardvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EStandard[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
facturx
public static final EStandard facturx
-
orderx
public static final EStandard orderx
-
despatchadvice
public static final EStandard despatchadvice
-
ubldespatchadvice
public static final EStandard ubldespatchadvice
-
zugferd
public static final EStandard zugferd
-
cii
public static final EStandard cii
-
ubl
public static final EStandard ubl
-
ubl_creditnote
public static final EStandard ubl_creditnote
-
-
Method Detail
-
values
public static EStandard[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EStandard c : EStandard.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EStandard valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-