SchemaGeneratorConfigPart<FieldScope> |
SchemaGeneratorConfigBuilder.forFields() |
Get the part of this configuration builder dedicated to custom attribute look-ups for fields.
|
SchemaGeneratorConfigPart<MethodScope> |
SchemaGeneratorConfigBuilder.forMethods() |
Get the part of this configuration builder dedicated to custom attribute look-ups for methods.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withArrayMaxItemsResolver(ConfigFunction<M,Integer> resolver) |
Setter for "maxItems" resolver.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withArrayMinItemsResolver(ConfigFunction<M,Integer> resolver) |
Setter for "minItems" resolver.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withArrayUniqueItemsResolver(ConfigFunction<M,Boolean> resolver) |
Setter for "uniqueItems" resolver.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withDefaultResolver(ConfigFunction<M,Object> resolver) |
Setter for "default" resolver.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withDescriptionResolver(ConfigFunction<M,String> resolver) |
Setter for "description" resolver.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withEnumResolver(ConfigFunction<M,Collection<?>> resolver) |
Setter for "enum"/"const" resolver.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withIgnoreCheck(Predicate<M> check) |
Setter for ignore check.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withInstanceAttributeOverride(InstanceAttributeOverride<M> override) |
Setter for override of attributes on a given JSON Schema node in the respective member.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withNullableCheck(ConfigFunction<M,Boolean> check) |
Setter for nullable check.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withNumberExclusiveMaximumResolver(ConfigFunction<M,BigDecimal> resolver) |
Setter for "exclusiveMaximum" resolver.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withNumberExclusiveMinimumResolver(ConfigFunction<M,BigDecimal> resolver) |
Setter for "exclusiveMinimum" resolver.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withNumberInclusiveMaximumResolver(ConfigFunction<M,BigDecimal> resolver) |
Setter for "maximum" resolver.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withNumberInclusiveMinimumResolver(ConfigFunction<M,BigDecimal> resolver) |
Setter for "minimum" resolver.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withNumberMultipleOfResolver(ConfigFunction<M,BigDecimal> resolver) |
Setter for "multipleOf" resolver.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withPropertyNameOverrideResolver(ConfigFunction<M,String> resolver) |
Setter for property name resolver, expecting the respective member and the default name as inputs.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withRequiredCheck(Predicate<M> check) |
Setter for required check.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withStringFormatResolver(ConfigFunction<M,String> resolver) |
Setter for "format" resolver.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withStringMaxLengthResolver(ConfigFunction<M,Integer> resolver) |
Setter for "maxLength" resolver.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withStringMinLengthResolver(ConfigFunction<M,Integer> resolver) |
Setter for "minLength" resolver.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withStringPatternResolver(ConfigFunction<M,String> resolver) |
Setter for "format" resolver.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withTargetTypeOverrideResolver(ConfigFunction<M,com.fasterxml.classmate.ResolvedType> resolver) |
Setter for target type resolver, expecting the respective member and the default type as inputs.
|
SchemaGeneratorConfigPart<M> |
SchemaGeneratorConfigPart.withTitleResolver(ConfigFunction<M,String> resolver) |
Setter for "title" resolver.
|