Package org.hl7.fhir.r5.model
Enum Questionnaire.QuestionnaireItemDisabledDisplay
- java.lang.Object
-
- java.lang.Enum<Questionnaire.QuestionnaireItemDisabledDisplay>
-
- org.hl7.fhir.r5.model.Questionnaire.QuestionnaireItemDisabledDisplay
-
- All Implemented Interfaces:
Serializable,Comparable<Questionnaire.QuestionnaireItemDisabledDisplay>
- Enclosing class:
- Questionnaire
public static enum Questionnaire.QuestionnaireItemDisabledDisplay extends Enum<Questionnaire.QuestionnaireItemDisabledDisplay>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HIDDENThe item (and its children) should not be visible to the user at all.NULLadded to help the parsers with the generic typesPROTECTEDThe item (and possibly its children) should not be selectable or editable but should still be visible - to allow the user to see what questions *could* have been completed had other answers caused the item to be enabled.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Questionnaire.QuestionnaireItemDisabledDisplayfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static Questionnaire.QuestionnaireItemDisabledDisplayvalueOf(String name)Returns the enum constant of this type with the specified name.static Questionnaire.QuestionnaireItemDisabledDisplay[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HIDDEN
public static final Questionnaire.QuestionnaireItemDisabledDisplay HIDDEN
The item (and its children) should not be visible to the user at all.
-
PROTECTED
public static final Questionnaire.QuestionnaireItemDisabledDisplay PROTECTED
The item (and possibly its children) should not be selectable or editable but should still be visible - to allow the user to see what questions *could* have been completed had other answers caused the item to be enabled.
-
NULL
public static final Questionnaire.QuestionnaireItemDisabledDisplay NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static Questionnaire.QuestionnaireItemDisabledDisplay[] 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 (Questionnaire.QuestionnaireItemDisabledDisplay c : Questionnaire.QuestionnaireItemDisabledDisplay.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Questionnaire.QuestionnaireItemDisabledDisplay 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
-
fromCode
public static Questionnaire.QuestionnaireItemDisabledDisplay fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-