Enum EngineMode
- java.lang.Object
-
- java.lang.Enum<EngineMode>
-
- org.hl7.fhir.validation.cli.utils.EngineMode
-
- All Implemented Interfaces:
Serializable,Comparable<EngineMode>
public enum EngineMode extends Enum<EngineMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPILECONVERTFHIRPATHNARRATIVESCANSNAPSHOTSPREADSHEETTRANSFORMVALIDATIONVERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EngineModevalueOf(String name)Returns the enum constant of this type with the specified name.static EngineMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VALIDATION
public static final EngineMode VALIDATION
-
COMPILE
public static final EngineMode COMPILE
-
TRANSFORM
public static final EngineMode TRANSFORM
-
NARRATIVE
public static final EngineMode NARRATIVE
-
SNAPSHOT
public static final EngineMode SNAPSHOT
-
SCAN
public static final EngineMode SCAN
-
CONVERT
public static final EngineMode CONVERT
-
SPREADSHEET
public static final EngineMode SPREADSHEET
-
FHIRPATH
public static final EngineMode FHIRPATH
-
VERSION
public static final EngineMode VERSION
-
-
Method Detail
-
values
public static EngineMode[] 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 (EngineMode c : EngineMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EngineMode 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
-
-