Package org.hl7.fhir.r5.model
Enum Questionnaire.QuestionnaireAnswerConstraint
- java.lang.Object
-
- java.lang.Enum<Questionnaire.QuestionnaireAnswerConstraint>
-
- org.hl7.fhir.r5.model.Questionnaire.QuestionnaireAnswerConstraint
-
- All Implemented Interfaces:
Serializable,Comparable<Questionnaire.QuestionnaireAnswerConstraint>
- Enclosing class:
- Questionnaire
public static enum Questionnaire.QuestionnaireAnswerConstraint extends Enum<Questionnaire.QuestionnaireAnswerConstraint>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NULLadded to help the parsers with the generic typesOPTIONSONLYOnly values listed as answerOption or in the expansion of the answerValueSet are permittedOPTIONSORSTRINGIn addition to the values listed as answerOption or in the expansion of the answerValueSet, free-text strings are permitted.OPTIONSORTYPEIn addition to the values listed as answerOption or in the expansion of the answerValueSet, any other values that correspond to the specified item.type are permitted
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Questionnaire.QuestionnaireAnswerConstraintfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static Questionnaire.QuestionnaireAnswerConstraintvalueOf(String name)Returns the enum constant of this type with the specified name.static Questionnaire.QuestionnaireAnswerConstraint[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPTIONSONLY
public static final Questionnaire.QuestionnaireAnswerConstraint OPTIONSONLY
Only values listed as answerOption or in the expansion of the answerValueSet are permitted
-
OPTIONSORTYPE
public static final Questionnaire.QuestionnaireAnswerConstraint OPTIONSORTYPE
In addition to the values listed as answerOption or in the expansion of the answerValueSet, any other values that correspond to the specified item.type are permitted
-
OPTIONSORSTRING
public static final Questionnaire.QuestionnaireAnswerConstraint OPTIONSORSTRING
In addition to the values listed as answerOption or in the expansion of the answerValueSet, free-text strings are permitted. Answers will have a type of 'string'.
-
NULL
public static final Questionnaire.QuestionnaireAnswerConstraint NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static Questionnaire.QuestionnaireAnswerConstraint[] 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.QuestionnaireAnswerConstraint c : Questionnaire.QuestionnaireAnswerConstraint.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.QuestionnaireAnswerConstraint 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.QuestionnaireAnswerConstraint fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-