Record Class SourceGeneratorConfig.JavadocConfig
java.lang.Object
java.lang.Record
io.micronaut.jsonschema.generator.utils.SourceGeneratorConfig.JavadocConfig
- Record Components:
replaceHTML- Whether to replace HTML characters, e.g.>to>.
- Enclosing class:
SourceGeneratorConfig
A sub-configuration used for generated Javadoc.
The configuration has single parameter, but is expected to be extended with more properties.
- Author:
- Elif Kurtay
-
Constructor Summary
ConstructorsConstructorDescriptionInitialize the configuration with defaults.JavadocConfig(boolean replaceHTML) Creates an instance of aJavadocConfigrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanReturns the value of thereplaceHTMLrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
JavadocConfig
public JavadocConfig()Initialize the configuration with defaults. -
JavadocConfig
public JavadocConfig(boolean replaceHTML) Creates an instance of aJavadocConfigrecord class.- Parameters:
replaceHTML- the value for thereplaceHTMLrecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with thecomparemethod from their corresponding wrapper classes. -
replaceHTML
public boolean replaceHTML()Returns the value of thereplaceHTMLrecord component.- Returns:
- the value of the
replaceHTMLrecord component
-