Package ca.uhn.fhir.model.dstu2.valueset
Enum GuidePageKindEnum
- java.lang.Object
-
- java.lang.Enum<GuidePageKindEnum>
-
- ca.uhn.fhir.model.dstu2.valueset.GuidePageKindEnum
-
- All Implemented Interfaces:
Serializable,Comparable<GuidePageKindEnum>
public enum GuidePageKindEnum extends Enum<GuidePageKindEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DICTIONARYDisplay: Dictionary
Code Value: dictionary This is a page that creates the listed resources as a dictionary.DIRECTORYDisplay: Directory
Code Value: directory This is a page that lists the resources of a given type, and also creates pages for all the listed types as other pages in the section.EXAMPLEDisplay: Example
Code Value: example This is a page that represents a human readable rendering of an example.INCLUDEDisplay: Include
Code Value: include This is a page showing where an included guide is injected.LISTDisplay: List
Code Value: list This is a page that represents a list of resources of one or more types.PAGEDisplay: Page
Code Value: page This is a page of content that is included in the implementation guide.RESOURCEDisplay: Resource
Code Value: resource This is a page that represents a presented resource.TABLE_OF_CONTENTSDisplay: Table Of Contents
Code Value: toc This is a generated page that contains the table of contents.
-
Field Summary
Fields Modifier and Type Field Description static ca.uhn.fhir.model.api.IValueSetEnumBinder<GuidePageKindEnum>VALUESET_BINDERConverts codes to their respective enumerated valuesstatic StringVALUESET_IDENTIFIERIdentifier for this Value Set:static StringVALUESET_NAMEName for this Value Set: GuidePageKind
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GuidePageKindEnumforCode(String theCode)Returns the enumerated value associated with this codeStringgetCode()Returns the code associated with this enumerated valueStringgetSystem()Returns the code system associated with this enumerated valuestatic GuidePageKindEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static GuidePageKindEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PAGE
public static final GuidePageKindEnum PAGE
Display: Page
Code Value: page This is a page of content that is included in the implementation guide. It has no particular function.
-
EXAMPLE
public static final GuidePageKindEnum EXAMPLE
Display: Example
Code Value: example This is a page that represents a human readable rendering of an example.
-
LIST
public static final GuidePageKindEnum LIST
Display: List
Code Value: list This is a page that represents a list of resources of one or more types.
-
INCLUDE
public static final GuidePageKindEnum INCLUDE
Display: Include
Code Value: include This is a page showing where an included guide is injected.
-
DIRECTORY
public static final GuidePageKindEnum DIRECTORY
Display: Directory
Code Value: directory This is a page that lists the resources of a given type, and also creates pages for all the listed types as other pages in the section.
-
DICTIONARY
public static final GuidePageKindEnum DICTIONARY
Display: Dictionary
Code Value: dictionary This is a page that creates the listed resources as a dictionary.
-
TABLE_OF_CONTENTS
public static final GuidePageKindEnum TABLE_OF_CONTENTS
Display: Table Of Contents
Code Value: toc This is a generated page that contains the table of contents.
-
RESOURCE
public static final GuidePageKindEnum RESOURCE
Display: Resource
Code Value: resource This is a page that represents a presented resource. This is typically used for generated conformance resource presentations.
-
-
Field Detail
-
VALUESET_IDENTIFIER
public static final String VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
- Constant Field Values
-
VALUESET_NAME
public static final String VALUESET_NAME
Name for this Value Set: GuidePageKind- See Also:
- Constant Field Values
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<GuidePageKindEnum> VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Detail
-
values
public static GuidePageKindEnum[] 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 (GuidePageKindEnum c : GuidePageKindEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GuidePageKindEnum 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
-
forCode
public static GuidePageKindEnum forCode(String theCode)
Returns the enumerated value associated with this code
-
-