Enum PipelineParameterChecker.Missing
- java.lang.Object
-
- java.lang.Enum<PipelineParameterChecker.Missing>
-
- de.julielab.jcore.pipeline.builder.base.PipelineParameterChecker.Missing
-
- All Implemented Interfaces:
Serializable,Comparable<PipelineParameterChecker.Missing>
- Enclosing class:
- PipelineParameterChecker
public static enum PipelineParameterChecker.Missing extends Enum<PipelineParameterChecker.Missing>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AE_AND_CCDUPLICATE_EXTERNAL_RESOURCE_NAMEEXTERNAL_RESOURCEEXTERNAL_RESOURCE_PARAMETERPARAMETERPARSING_ERRORREADER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PipelineParameterChecker.MissingvalueOf(String name)Returns the enum constant of this type with the specified name.static PipelineParameterChecker.Missing[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
READER
public static final PipelineParameterChecker.Missing READER
-
AE_AND_CC
public static final PipelineParameterChecker.Missing AE_AND_CC
-
PARAMETER
public static final PipelineParameterChecker.Missing PARAMETER
-
EXTERNAL_RESOURCE
public static final PipelineParameterChecker.Missing EXTERNAL_RESOURCE
-
EXTERNAL_RESOURCE_PARAMETER
public static final PipelineParameterChecker.Missing EXTERNAL_RESOURCE_PARAMETER
-
PARSING_ERROR
public static final PipelineParameterChecker.Missing PARSING_ERROR
-
DUPLICATE_EXTERNAL_RESOURCE_NAME
public static final PipelineParameterChecker.Missing DUPLICATE_EXTERNAL_RESOURCE_NAME
-
-
Method Detail
-
values
public static PipelineParameterChecker.Missing[] 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 (PipelineParameterChecker.Missing c : PipelineParameterChecker.Missing.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PipelineParameterChecker.Missing 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
-
-