Package com.fourjs.report.facturx.util
Enum Util.Profile
- java.lang.Object
-
- java.lang.Enum<Util.Profile>
-
- com.fourjs.report.facturx.util.Util.Profile
-
- All Implemented Interfaces:
Serializable,Comparable<Util.Profile>
- Enclosing class:
- Util
public static enum Util.Profile extends Enum<Util.Profile>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Util.ProfilevalueOf(String name)Returns the enum constant of this type with the specified name.static Util.Profile[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Minimum
public static final Util.Profile Minimum
-
BasicWL
public static final Util.Profile BasicWL
-
Basic
public static final Util.Profile Basic
-
EN16931
public static final Util.Profile EN16931
-
Extended
public static final Util.Profile Extended
-
-
Method Detail
-
values
public static Util.Profile[] 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 (Util.Profile c : Util.Profile.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Util.Profile 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
-
-