Uses of Class
com.github.victools.jsonschema.generator.Option
-
Packages that use Option Package Description com.github.victools.jsonschema.generator com.github.victools.jsonschema.generator.impl -
-
Uses of Option in com.github.victools.jsonschema.generator
Methods in com.github.victools.jsonschema.generator that return Option Modifier and Type Method Description static Option
Option. valueOf(String name)
Returns the enum constant of this type with the specified name.static Option[]
Option. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.github.victools.jsonschema.generator with parameters of type Option Modifier and Type Method Description Boolean
SchemaGeneratorConfigBuilder. getSetting(Option setting)
Check whether the given setting/option has been set and if yes, whether it is enabled or disabled.boolean
OptionPreset. isOptionEnabledByDefault(Option setting)
Indicate whether the given option should be enabled, if it was not specifically included/excluded in theSchemaGeneratorConfigBuilder
.boolean
Option. isOverriding(Option otherOption)
Check whether the given option is being ignored if this one enabled.SchemaGeneratorConfigBuilder
SchemaGeneratorConfigBuilder. with(Option setting, Option... moreSettings)
Enable an option for the schema generation.SchemaGeneratorConfigBuilder
SchemaGeneratorConfigBuilder. without(Option setting, Option... moreSettings)
Disable an option for the schema generation.Constructors in com.github.victools.jsonschema.generator with parameters of type Option Constructor Description OptionPreset(Option... enabledByDefault)
Constructor: defining the fixed list of options to be enabled by default. -
Uses of Option in com.github.victools.jsonschema.generator.impl
Constructor parameters in com.github.victools.jsonschema.generator.impl with type arguments of type Option Constructor Description SchemaGeneratorConfigImpl(com.fasterxml.jackson.databind.ObjectMapper objectMapper, Set<Option> enabledOptions, SchemaGeneratorGeneralConfigPart typesInGeneralConfigPart, SchemaGeneratorConfigPart<FieldScope> fieldConfigPart, SchemaGeneratorConfigPart<MethodScope> methodConfigPart)
Constructor of a configuration instance.
-