Enum V3StyleType
- java.lang.Object
-
- java.lang.Enum<V3StyleType>
-
- org.hl7.fhir.r4.model.codesystems.V3StyleType
-
- All Implemented Interfaces:
Serializable,Comparable<V3StyleType>
public enum V3StyleType extends Enum<V3StyleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description _FONTSTYLEDefines font rendering characteristics_LISTSTYLEDefines list rendering characteristics_ORDEREDLISTSTYLEDefines rendering characteristics for ordered lists_TABLERULESTYLEDefines table cell rendering characteristics_UNORDEREDLISTSTYLEDefines rendering characteristics for unordered listsARABICList is ordered using Arabic numerals: 1, 2, 3BIGALPHAList is ordered using big alpha characters: A, B, CBIGROMANList is ordered using big Roman numerals: I, II, IIIBOLDRender with a bold fontBOTRULERender cell with rule on bottomCIRCLEList bullets are hollow discsDISCList bullets are simple solid discsEMPHASISRender with with some type of emphasisITALICSRender italicizedLITTLEALPHAList is order using little alpha characters: a, b, cLITTLEROMANList is ordered using little Roman numerals: i, ii, iiiLRULERender cell with left-sided ruleNULLadded to help the parsersRRULERender cell with right-sided ruleSQUAREList bullets are solid squaresTOPRULERender cell with rule on topUNDERLINERender with an underline font
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static V3StyleTypefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static V3StyleTypevalueOf(String name)Returns the enum constant of this type with the specified name.static V3StyleType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_FONTSTYLE
public static final V3StyleType _FONTSTYLE
Defines font rendering characteristics
-
BOLD
public static final V3StyleType BOLD
Render with a bold font
-
EMPHASIS
public static final V3StyleType EMPHASIS
Render with with some type of emphasis
-
ITALICS
public static final V3StyleType ITALICS
Render italicized
-
UNDERLINE
public static final V3StyleType UNDERLINE
Render with an underline font
-
_LISTSTYLE
public static final V3StyleType _LISTSTYLE
Defines list rendering characteristics
-
_ORDEREDLISTSTYLE
public static final V3StyleType _ORDEREDLISTSTYLE
Defines rendering characteristics for ordered lists
-
ARABIC
public static final V3StyleType ARABIC
List is ordered using Arabic numerals: 1, 2, 3
-
BIGALPHA
public static final V3StyleType BIGALPHA
List is ordered using big alpha characters: A, B, C
-
BIGROMAN
public static final V3StyleType BIGROMAN
List is ordered using big Roman numerals: I, II, III
-
LITTLEALPHA
public static final V3StyleType LITTLEALPHA
List is order using little alpha characters: a, b, c
-
LITTLEROMAN
public static final V3StyleType LITTLEROMAN
List is ordered using little Roman numerals: i, ii, iii
-
_UNORDEREDLISTSTYLE
public static final V3StyleType _UNORDEREDLISTSTYLE
Defines rendering characteristics for unordered lists
-
CIRCLE
public static final V3StyleType CIRCLE
List bullets are hollow discs
-
DISC
public static final V3StyleType DISC
List bullets are simple solid discs
-
SQUARE
public static final V3StyleType SQUARE
List bullets are solid squares
-
_TABLERULESTYLE
public static final V3StyleType _TABLERULESTYLE
Defines table cell rendering characteristics
-
BOTRULE
public static final V3StyleType BOTRULE
Render cell with rule on bottom
-
LRULE
public static final V3StyleType LRULE
Render cell with left-sided rule
-
RRULE
public static final V3StyleType RRULE
Render cell with right-sided rule
-
TOPRULE
public static final V3StyleType TOPRULE
Render cell with rule on top
-
NULL
public static final V3StyleType NULL
added to help the parsers
-
-
Method Detail
-
values
public static V3StyleType[] 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 (V3StyleType c : V3StyleType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static V3StyleType 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 V3StyleType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-