Package de.gematik.combine
Enum CombineMojo.ErrorType
- java.lang.Object
-
- java.lang.Enum<CombineMojo.ErrorType>
-
- de.gematik.combine.CombineMojo.ErrorType
-
- All Implemented Interfaces:
Serializable,Comparable<CombineMojo.ErrorType>
- Enclosing class:
- CombineMojo
public static enum CombineMojo.ErrorType extends Enum<CombineMojo.ErrorType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MINIMAL_TABLEPROPERTYSIZEWARNING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CombineMojo.ErrorTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CombineMojo.ErrorType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SIZE
public static final CombineMojo.ErrorType SIZE
-
MINIMAL_TABLE
public static final CombineMojo.ErrorType MINIMAL_TABLE
-
PROPERTY
public static final CombineMojo.ErrorType PROPERTY
-
WARNING
public static final CombineMojo.ErrorType WARNING
-
-
Method Detail
-
values
public static CombineMojo.ErrorType[] 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 (CombineMojo.ErrorType c : CombineMojo.ErrorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CombineMojo.ErrorType 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
-
-