Enum ValidationOptions.ValueSetMode
- java.lang.Object
-
- java.lang.Enum<ValidationOptions.ValueSetMode>
-
- org.hl7.fhir.utilities.validation.ValidationOptions.ValueSetMode
-
- All Implemented Interfaces:
Serializable,Comparable<ValidationOptions.ValueSetMode>
- Enclosing class:
- ValidationOptions
public static enum ValidationOptions.ValueSetMode extends Enum<ValidationOptions.ValueSetMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_CHECKSCHECK_MEMERSHIP_ONLYNO_MEMBERSHIP_CHECK
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ValidationOptions.ValueSetModevalueOf(String name)Returns the enum constant of this type with the specified name.static ValidationOptions.ValueSetMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL_CHECKS
public static final ValidationOptions.ValueSetMode ALL_CHECKS
-
CHECK_MEMERSHIP_ONLY
public static final ValidationOptions.ValueSetMode CHECK_MEMERSHIP_ONLY
-
NO_MEMBERSHIP_CHECK
public static final ValidationOptions.ValueSetMode NO_MEMBERSHIP_CHECK
-
-
Method Detail
-
values
public static ValidationOptions.ValueSetMode[] 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 (ValidationOptions.ValueSetMode c : ValidationOptions.ValueSetMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ValidationOptions.ValueSetMode 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
-
-