Enum Separators.Spacing

java.lang.Object
java.lang.Enum<Separators.Spacing>
com.fasterxml.jackson.core.util.Separators.Spacing
All Implemented Interfaces:
Serializable, Comparable<Separators.Spacing>, java.lang.constant.Constable
Enclosing class:
Separators

public static enum Separators.Spacing extends Enum<Separators.Spacing>
Define the spacing around elements like commas and colons.
Since:
2.16
  • Enum Constant Details

  • Method Details

    • values

      public static Separators.Spacing[] 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 Separators.Spacing 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
    • spacesBefore

      public String spacesBefore()
    • spacesAfter

      public String spacesAfter()
    • apply

      public String apply(char separator)