Enum IParser.OutputStyle

java.lang.Object
java.lang.Enum<IParser.OutputStyle>
org.hl7.fhir.r5.formats.IParser.OutputStyle
All Implemented Interfaces:
Serializable, Comparable<IParser.OutputStyle>
Enclosing interface:
IParser

public static enum IParser.OutputStyle extends Enum<IParser.OutputStyle>
  • Enum Constant Details

    • 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 Details

    • values

      public static IParser.OutputStyle[] 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

      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 name
      NullPointerException - if the argument is null