Enum ZugferdVersionType
- java.lang.Object
-
- java.lang.Enum<ZugferdVersionType>
-
- net.webpdf.wsclient.schema.operation.ZugferdVersionType
-
- All Implemented Interfaces:
Serializable,Comparable<ZugferdVersionType>
public enum ZugferdVersionType extends Enum<ZugferdVersionType>
Java class for ZugferdVersionType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ZugferdVersionType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="v10Comfort"/> <enumeration value="v20Minimum"/> <enumeration value="v20BasicWL"/> <enumeration value="v20Basic"/> <enumeration value="v20EN16931"/> <enumeration value="v20Extended"/> <enumeration value="v21Minimum"/> <enumeration value="v21BasicWL"/> <enumeration value="v21Basic"/> <enumeration value="v21EN16931"/> <enumeration value="v21Extended"/> <enumeration value="v21XRechnung"/> <enumeration value="v22Minimum"/> <enumeration value="v22BasicWL"/> <enumeration value="v22Basic"/> <enumeration value="v22EN16931"/> <enumeration value="v22Extended"/> <enumeration value="v22XRechnung"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description V_10_COMFORTV_20_BASICV_20_BASIC_WLV_20_EN_16931V_20_EXTENDEDV_20_MINIMUMV_21_BASICV_21_BASIC_WLV_21_EN_16931V_21_EXTENDEDV_21_MINIMUMV_21_X_RECHNUNGV_22_BASICV_22_BASIC_WLV_22_EN_16931V_22_EXTENDEDV_22_MINIMUMV_22_X_RECHNUNG
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ZugferdVersionTypefromValue(String v)Stringvalue()static ZugferdVersionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ZugferdVersionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
V_10_COMFORT
public static final ZugferdVersionType V_10_COMFORT
-
V_20_MINIMUM
public static final ZugferdVersionType V_20_MINIMUM
-
V_20_BASIC_WL
public static final ZugferdVersionType V_20_BASIC_WL
-
V_20_BASIC
public static final ZugferdVersionType V_20_BASIC
-
V_20_EN_16931
public static final ZugferdVersionType V_20_EN_16931
-
V_20_EXTENDED
public static final ZugferdVersionType V_20_EXTENDED
-
V_21_MINIMUM
public static final ZugferdVersionType V_21_MINIMUM
-
V_21_BASIC_WL
public static final ZugferdVersionType V_21_BASIC_WL
-
V_21_BASIC
public static final ZugferdVersionType V_21_BASIC
-
V_21_EN_16931
public static final ZugferdVersionType V_21_EN_16931
-
V_21_EXTENDED
public static final ZugferdVersionType V_21_EXTENDED
-
V_21_X_RECHNUNG
public static final ZugferdVersionType V_21_X_RECHNUNG
-
V_22_MINIMUM
public static final ZugferdVersionType V_22_MINIMUM
-
V_22_BASIC_WL
public static final ZugferdVersionType V_22_BASIC_WL
-
V_22_BASIC
public static final ZugferdVersionType V_22_BASIC
-
V_22_EN_16931
public static final ZugferdVersionType V_22_EN_16931
-
V_22_EXTENDED
public static final ZugferdVersionType V_22_EXTENDED
-
V_22_X_RECHNUNG
public static final ZugferdVersionType V_22_X_RECHNUNG
-
-
Method Detail
-
values
public static ZugferdVersionType[] 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 (ZugferdVersionType c : ZugferdVersionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ZugferdVersionType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static ZugferdVersionType fromValue(String v)
-
-