Enum ForbidOptionalPropertiesMode

java.lang.Object
java.lang.Enum<ForbidOptionalPropertiesMode>
de.xima.fc.prompt.service.support.ForbidOptionalPropertiesMode
All Implemented Interfaces:
Serializable, Comparable<ForbidOptionalPropertiesMode>

public enum ForbidOptionalPropertiesMode extends Enum<ForbidOptionalPropertiesMode>
Mode that controls the behavior of the forbidOptionalProperties transform step.
Since:
8.5.0
See Also:
  • Enum Constant Details

    • CONVERT_TO_NULLABLE

      public static final ForbidOptionalPropertiesMode CONVERT_TO_NULLABLE
      Converts all optional properties to required nullable properties, i.e. adds "null" to the list of types of each property. /*
    • DROP

      public static final ForbidOptionalPropertiesMode DROP
      Drops (removes) all optional properties.
    • MARK_AS_REQUIRED

      public static final ForbidOptionalPropertiesMode MARK_AS_REQUIRED
      Marks all optional properties as required, via the JSON schema "required" keyword .
  • Method Details

    • values

      public static ForbidOptionalPropertiesMode[] 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 ForbidOptionalPropertiesMode 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