Package org.hl7.fhir.r4.formats
Enum IParser.OutputStyle
- All Implemented Interfaces:
Serializable
,Comparable<IParser.OutputStyle>
- Enclosing interface:
IParser
-
Enum Constant Summary
Enum ConstantDescriptionProduce canonical output - no comments, no whitspace, HTML whitespace normlised, JSON attributes sorted alphabetically (slightly slower)Produce normal output - no whitespace, except in HTML where whitespace is untouchedProduce pretty output - human readable whitespace, HTML whitespace untouched -
Method Summary
Modifier and TypeMethodDescriptionstatic IParser.OutputStyle
Returns the enum constant of this type with the specified name.static IParser.OutputStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NORMAL
Produce normal output - no whitespace, except in HTML where whitespace is untouched -
PRETTY
Produce pretty output - human readable whitespace, HTML whitespace untouched -
CANONICAL
Produce canonical output - no comments, no whitspace, HTML whitespace normlised, JSON attributes sorted alphabetically (slightly slower)
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-