Record Class OpenApiGeneratorOptions
java.lang.Object
java.lang.Record
io.quarkiverse.openapi.generator.deployment.OpenApiGeneratorOptions
-
Constructor Summary
ConstructorsConstructorDescriptionOpenApiGeneratorOptions(org.eclipse.microprofile.config.Config config, Path openApiFilePath, Path outDir, Path templateDir, boolean isRestEasyReactive) Creates an instance of aOpenApiGeneratorOptionsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionorg.eclipse.microprofile.config.Configconfig()Returns the value of theconfigrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanReturns the value of theisRestEasyReactiverecord component.Returns the value of theopenApiFilePathrecord component.outDir()Returns the value of theoutDirrecord component.Returns the value of thetemplateDirrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
OpenApiGeneratorOptions
public OpenApiGeneratorOptions(org.eclipse.microprofile.config.Config config, Path openApiFilePath, Path outDir, Path templateDir, boolean isRestEasyReactive) Creates an instance of aOpenApiGeneratorOptionsrecord class.- Parameters:
config- the value for theconfigrecord componentopenApiFilePath- the value for theopenApiFilePathrecord componentoutDir- the value for theoutDirrecord componenttemplateDir- the value for thetemplateDirrecord componentisRestEasyReactive- the value for theisRestEasyReactiverecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
config
public org.eclipse.microprofile.config.Config config()Returns the value of theconfigrecord component.- Returns:
- the value of the
configrecord component
-
openApiFilePath
Returns the value of theopenApiFilePathrecord component.- Returns:
- the value of the
openApiFilePathrecord component
-
outDir
Returns the value of theoutDirrecord component.- Returns:
- the value of the
outDirrecord component
-
templateDir
Returns the value of thetemplateDirrecord component.- Returns:
- the value of the
templateDirrecord component
-
isRestEasyReactive
public boolean isRestEasyReactive()Returns the value of theisRestEasyReactiverecord component.- Returns:
- the value of the
isRestEasyReactiverecord component
-