Package com.inet.problemfinder
Enum ProblemFinderWarning.Sources
- java.lang.Object
-
- java.lang.Enum<ProblemFinderWarning.Sources>
-
- com.inet.problemfinder.ProblemFinderWarning.Sources
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ProblemFinderWarning.Sources>
- Enclosing interface:
- ProblemFinderWarning
public static enum ProblemFinderWarning.Sources extends java.lang.Enum<ProblemFinderWarning.Sources>
The source object exceptions that can be returned byProblemFinderWarning.getSource()
.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATABASE
ThisProblemFinderWarning
is caused by a general problem inDatabaseTables
for example the joins contain a cycleDATATABLE
ThisProblemFinderWarning
is caused by a Problem in a database table, for example the table in unlinkedFACTURX
ThisProblemFinderWarning
is caused by a general problem in the FacturX mapping
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProblemFinderWarning.Sources
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ProblemFinderWarning.Sources[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATATABLE
public static final ProblemFinderWarning.Sources DATATABLE
ThisProblemFinderWarning
is caused by a Problem in a database table, for example the table in unlinked
-
DATABASE
public static final ProblemFinderWarning.Sources DATABASE
ThisProblemFinderWarning
is caused by a general problem inDatabaseTables
for example the joins contain a cycle
-
FACTURX
public static final ProblemFinderWarning.Sources FACTURX
ThisProblemFinderWarning
is caused by a general problem in the FacturX mapping
-
-
Method Detail
-
values
public static ProblemFinderWarning.Sources[] 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 (ProblemFinderWarning.Sources c : ProblemFinderWarning.Sources.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProblemFinderWarning.Sources 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
-
-