Enum V3HtmlLinkType
- java.lang.Object
-
- java.lang.Enum<V3HtmlLinkType>
-
- org.hl7.fhir.r4.model.codesystems.V3HtmlLinkType
-
- All Implemented Interfaces:
Serializable,Comparable<V3HtmlLinkType>
public enum V3HtmlLinkType extends Enum<V3HtmlLinkType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALTERNATEDesignates substitute versions for the document in which the link occurs.APPENDIXRefers to a document serving as an appendix in a collection of documents.BOOKMARKRefers to a bookmark.CHAPTERRefers to a document serving as a chapter in a collection of documents.CONTENTSRefers to a document serving as a table of contents.COPYRIGHTRefers to a copyright statement for the current document.GLOSSARYRefers to a document providing a glossary of terms that pertain to the current document.HELPRefers to a document offering help (more information, links to other sources of information, etc.).INDEXRefers to a document providing an index for the current document.NEXTRefers to the next document in a linear sequence of documents.NULLadded to help the parsersPREVRefers to the previous document in an ordered series of documents.SECTIONRefers to a document serving as a section in a collection of documents.STARTRefers to the first document in a collection of documents.STYLESHEETRefers to an external style sheet.SUBSECTIONRefers to a document serving as a subsection in a collection of documents.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static V3HtmlLinkTypefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static V3HtmlLinkTypevalueOf(String name)Returns the enum constant of this type with the specified name.static V3HtmlLinkType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALTERNATE
public static final V3HtmlLinkType ALTERNATE
Designates substitute versions for the document in which the link occurs. When used together with the lang attribute, it implies a translated version of the document. When used together with the media attribute, it implies a version designed for a different medium (or media).
-
APPENDIX
public static final V3HtmlLinkType APPENDIX
Refers to a document serving as an appendix in a collection of documents.
-
BOOKMARK
public static final V3HtmlLinkType BOOKMARK
Refers to a bookmark. A bookmark is a link to a key entry point within an extended document. The title attribute may be used, for example, to label the bookmark. Note that several bookmarks may be defined in each document.
-
CHAPTER
public static final V3HtmlLinkType CHAPTER
Refers to a document serving as a chapter in a collection of documents.
-
CONTENTS
public static final V3HtmlLinkType CONTENTS
Refers to a document serving as a table of contents. Some user agents also support the synonym ToC (from "Table of Contents").
-
COPYRIGHT
public static final V3HtmlLinkType COPYRIGHT
Refers to a copyright statement for the current document.
-
GLOSSARY
public static final V3HtmlLinkType GLOSSARY
Refers to a document providing a glossary of terms that pertain to the current document.
-
HELP
public static final V3HtmlLinkType HELP
Refers to a document offering help (more information, links to other sources of information, etc.).
-
INDEX
public static final V3HtmlLinkType INDEX
Refers to a document providing an index for the current document.
-
NEXT
public static final V3HtmlLinkType NEXT
Refers to the next document in a linear sequence of documents. User agents may choose to preload the "next" document, to reduce the perceived load time.
-
PREV
public static final V3HtmlLinkType PREV
Refers to the previous document in an ordered series of documents. Some user agents also support the synonym "Previous".
-
SECTION
public static final V3HtmlLinkType SECTION
Refers to a document serving as a section in a collection of documents.
-
START
public static final V3HtmlLinkType START
Refers to the first document in a collection of documents. This link type tells search engines which document is considered by the author to be the starting point of the collection.
-
STYLESHEET
public static final V3HtmlLinkType STYLESHEET
Refers to an external style sheet. See the section on external style sheets for details. This is used together with the link type "Alternate" for user-selectable alternate style sheets.
-
SUBSECTION
public static final V3HtmlLinkType SUBSECTION
Refers to a document serving as a subsection in a collection of documents.
-
NULL
public static final V3HtmlLinkType NULL
added to help the parsers
-
-
Method Detail
-
values
public static V3HtmlLinkType[] 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 (V3HtmlLinkType c : V3HtmlLinkType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static V3HtmlLinkType 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 V3HtmlLinkType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-