Package org.hl7.fhir.r4b.renderers.utils
Enum RenderingContext.QuestionnaireRendererMode
- java.lang.Object
-
- java.lang.Enum<RenderingContext.QuestionnaireRendererMode>
-
- org.hl7.fhir.r4b.renderers.utils.RenderingContext.QuestionnaireRendererMode
-
- All Implemented Interfaces:
Serializable,Comparable<RenderingContext.QuestionnaireRendererMode>
- Enclosing class:
- RenderingContext
public static enum RenderingContext.QuestionnaireRendererMode extends Enum<RenderingContext.QuestionnaireRendererMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEFNSA presentation that lists all the items, with full details about themFORMA visual presentation of the questionnaire, with a set of property panes that can be toggled on and off.LINKSRendered links to various openly available Form Filler applications that know how to render a questionnaire published in a packageLOGICA structured tree that presents the enableWhen, terminology and expression bindings for the questionnaireTREEa structured tree that presents the content of the questionnaire in a logical fashion
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RenderingContext.QuestionnaireRendererModevalueOf(String name)Returns the enum constant of this type with the specified name.static RenderingContext.QuestionnaireRendererMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FORM
public static final RenderingContext.QuestionnaireRendererMode FORM
A visual presentation of the questionnaire, with a set of property panes that can be toggled on and off. Note that this is not the same as how the questionnaire would like on a form filler, since all dynamic behavior is ignored
-
TREE
public static final RenderingContext.QuestionnaireRendererMode TREE
a structured tree that presents the content of the questionnaire in a logical fashion
-
LOGIC
public static final RenderingContext.QuestionnaireRendererMode LOGIC
A structured tree that presents the enableWhen, terminology and expression bindings for the questionnaire
-
DEFNS
public static final RenderingContext.QuestionnaireRendererMode DEFNS
A presentation that lists all the items, with full details about them
-
LINKS
public static final RenderingContext.QuestionnaireRendererMode LINKS
Rendered links to various openly available Form Filler applications that know how to render a questionnaire published in a package
-
-
Method Detail
-
values
public static RenderingContext.QuestionnaireRendererMode[] 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 (RenderingContext.QuestionnaireRendererMode c : RenderingContext.QuestionnaireRendererMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RenderingContext.QuestionnaireRendererMode 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
-
-