Enum CheckDisplayOption
- java.lang.Object
-
- java.lang.Enum<CheckDisplayOption>
-
- org.hl7.fhir.dstu3.utils.validation.constants.CheckDisplayOption
-
- All Implemented Interfaces:
Serializable,Comparable<CheckDisplayOption>
public enum CheckDisplayOption extends Enum<CheckDisplayOption>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CheckCheckCaseCheckCaseAndSpaceCheckSpaceIgnore
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CheckDisplayOptionvalueOf(String name)Returns the enum constant of this type with the specified name.static CheckDisplayOption[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Ignore
public static final CheckDisplayOption Ignore
-
Check
public static final CheckDisplayOption Check
-
CheckCaseAndSpace
public static final CheckDisplayOption CheckCaseAndSpace
-
CheckCase
public static final CheckDisplayOption CheckCase
-
CheckSpace
public static final CheckDisplayOption CheckSpace
-
-
Method Detail
-
values
public static CheckDisplayOption[] 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 (CheckDisplayOption c : CheckDisplayOption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CheckDisplayOption 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
-
-