Enum ForbidOptionalPropertiesMode
java.lang.Object
java.lang.Enum<ForbidOptionalPropertiesMode>
de.xima.fc.prompt.service.support.ForbidOptionalPropertiesMode
- All Implemented Interfaces:
Serializable, Comparable<ForbidOptionalPropertiesMode>
Mode that controls the behavior of the
forbidOptionalProperties
transform step.- Since:
- 8.5.0
- See Also:
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionConverts all optional properties to required nullable properties, i.e. adds "null" to the list of types of each propertyDrops (removes) all optional properties.Marks all optional properties as required, via the JSON schema "required" keyword . -
Method Summary
Modifier and TypeMethodDescriptionstatic ForbidOptionalPropertiesModeReturns the enum constant of this type with the specified name.static ForbidOptionalPropertiesMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CONVERT_TO_NULLABLE
Converts all optional properties to required nullable properties, i.e. adds "null" to the list of types of each property. /* -
DROP
Drops (removes) all optional properties. -
MARK_AS_REQUIRED
Marks all optional properties as required, via the JSON schema "required" keyword .
-
-
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
-