Package org.hl7.fhir.r4.formats
Enum IParser.OutputStyle
- java.lang.Object
-
- java.lang.Enum<IParser.OutputStyle>
-
- org.hl7.fhir.r4.formats.IParser.OutputStyle
-
- All Implemented Interfaces:
Serializable,Comparable<IParser.OutputStyle>
- Enclosing interface:
- IParser
public static enum IParser.OutputStyle extends Enum<IParser.OutputStyle>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANONICALProduce canonical output - no comments, no whitspace, HTML whitespace normlised, JSON attributes sorted alphabetically (slightly slower)NORMALProduce normal output - no whitespace, except in HTML where whitespace is untouchedPRETTYProduce pretty output - human readable whitespace, HTML whitespace untouched
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IParser.OutputStylevalueOf(String name)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 Detail
-
NORMAL
public static final IParser.OutputStyle NORMAL
Produce normal output - no whitespace, except in HTML where whitespace is untouched
-
PRETTY
public static final IParser.OutputStyle PRETTY
Produce pretty output - human readable whitespace, HTML whitespace untouched
-
CANONICAL
public static final IParser.OutputStyle CANONICAL
Produce canonical output - no comments, no whitspace, HTML whitespace normlised, JSON attributes sorted alphabetically (slightly slower)
-
-
Method Detail
-
values
public static IParser.OutputStyle[] 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 (IParser.OutputStyle c : IParser.OutputStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IParser.OutputStyle 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
-
-