diff --git a/README.md b/README.md index af2a9421..658f9fe2 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ The mustache templates are best acquired by importing the project as a dependenc io.github.chrimle openapi-to-java-records-mustache-templates - 2.4.0 + 2.5.0 ``` It is **strongly recommended** to import the project as a dependency. It has officially been published to: diff --git a/docs/index.md b/docs/index.md index 33854735..d7b1c82d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -26,7 +26,7 @@ The mustache templates are best acquired by importing the project as a dependenc io.github.chrimle openapi-to-java-records-mustache-templates - 2.4.0 + 2.5.0 ``` It is **strongly recommended** to import the project as a dependency. It has officially been published to: diff --git a/pom.xml b/pom.xml index 874db816..5bc55363 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ io.github.chrimle openapi-to-java-records-mustache-templates - 2.4.0 + 2.5.0 OpenAPI to Java records :: Mustache Templates diff --git a/src/main/resources/templates/generateBuilders.mustache b/src/main/resources/templates/generateBuilders.mustache index 4b8b277d..23e2aa8a 100644 --- a/src/main/resources/templates/generateBuilders.mustache +++ b/src/main/resources/templates/generateBuilders.mustache @@ -23,7 +23,7 @@ }}{{#generateBuilders}} - /** Builder class for {@link {{classname}} } */ + /** Builder class for {@link {{classname}} }. */ public static class Builder { {{#vars}} @@ -35,8 +35,9 @@ * Sets the value of {@link {{classname}}#{{name}} }. * *

NOTE: Pass-by-reference is used! - * @param {{name}} {{description}}{{^description}}sets the value of {{name}}{{/description}} - * @return this {@link Builder}-instance for method-chaining + * + * @param {{name}} {{description}}{{^description}}sets the value of {{name}}{{/description}}. + * @return this {@link Builder}-instance for method-chaining. */ public Builder {{name}}(final {{{datatypeWithEnum}}} {{name}}) { this.{{name}} = {{name}}; @@ -49,7 +50,8 @@ * builder methods. * *

NOTE: Pass-by-reference is used! - * @return a new {@link {{classname}} }-instance + * + * @return a new {@link {{classname}} }-instance. */ public {{classname}} build() { return new {{classname}}( @@ -59,7 +61,7 @@ } } - /** Creates a {@link Builder}-instance. */ + /** Creates a new {@link Builder}-instance. */ public static {{classname}}.Builder builder() { return new {{classname}}.Builder(); }{{! diff --git a/src/main/resources/templates/modelEnum.mustache b/src/main/resources/templates/modelEnum.mustache index 2d82c342..b491087e 100644 --- a/src/main/resources/templates/modelEnum.mustache +++ b/src/main/resources/templates/modelEnum.mustache @@ -47,7 +47,7 @@ /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public {{{dataType}}} getValue() { return value; @@ -60,9 +60,9 @@ *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link {{classname}} } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link {{classname}} } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static {{classname}} fromValue(final {{{dataType}}} value) { for (final {{classname}} constant : {{classname}}.values()) { diff --git a/src/main/resources/templates/pojo.mustache b/src/main/resources/templates/pojo.mustache index 458c9b14..6389fe6c 100644 --- a/src/main/resources/templates/pojo.mustache +++ b/src/main/resources/templates/pojo.mustache @@ -75,7 +75,7 @@ /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public {{{dataType}}} getValue() { return value; @@ -88,9 +88,9 @@ *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link {{datatypeWithEnum}} } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link {{datatypeWithEnum}} } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static {{datatypeWithEnum}} fromValue(final {{{dataType}}} value) { for (final {{datatypeWithEnum}} constant : {{datatypeWithEnum}}.values()) { diff --git a/target/classes/templates/generateBuilders.mustache b/target/classes/templates/generateBuilders.mustache index 03b6786c..a5b116d3 100644 --- a/target/classes/templates/generateBuilders.mustache +++ b/target/classes/templates/generateBuilders.mustache @@ -15,7 +15,7 @@ }}{{! Source: openapi-to-java-records-mustache-templates - Version: 2.4.0 + Version: 2.5.0 This template is a custom template, and is used by `pojo.mustache`. @@ -23,7 +23,7 @@ }}{{#generateBuilders}} - /** Builder class for {@link {{classname}} } */ + /** Builder class for {@link {{classname}} }. */ public static class Builder { {{#vars}} @@ -35,8 +35,9 @@ * Sets the value of {@link {{classname}}#{{name}} }. * *

NOTE: Pass-by-reference is used! - * @param {{name}} {{description}}{{^description}}sets the value of {{name}}{{/description}} - * @return this {@link Builder}-instance for method-chaining + * + * @param {{name}} {{description}}{{^description}}sets the value of {{name}}{{/description}}. + * @return this {@link Builder}-instance for method-chaining. */ public Builder {{name}}(final {{{datatypeWithEnum}}} {{name}}) { this.{{name}} = {{name}}; @@ -49,7 +50,8 @@ * builder methods. * *

NOTE: Pass-by-reference is used! - * @return a new {@link {{classname}} }-instance + * + * @return a new {@link {{classname}} }-instance. */ public {{classname}} build() { return new {{classname}}( @@ -59,7 +61,7 @@ } } - /** Creates a {@link Builder}-instance. */ + /** Creates a new {@link Builder}-instance. */ public static {{classname}}.Builder builder() { return new {{classname}}.Builder(); }{{! diff --git a/target/classes/templates/javadoc.mustache b/target/classes/templates/javadoc.mustache index 401fb040..2b4fa5e3 100644 --- a/target/classes/templates/javadoc.mustache +++ b/target/classes/templates/javadoc.mustache @@ -15,7 +15,7 @@ }}{{! Source: openapi-to-java-records-mustache-templates - Version: 2.4.0 + Version: 2.5.0 This template is a custom template, and is used by `pojo.mustache` and `modelEnum.mustache`. diff --git a/target/classes/templates/licenseInfo.mustache b/target/classes/templates/licenseInfo.mustache index 5b6ce60e..b409dbc2 100644 --- a/target/classes/templates/licenseInfo.mustache +++ b/target/classes/templates/licenseInfo.mustache @@ -15,7 +15,7 @@ }}{{! Source: openapi-to-java-records-mustache-templates - Version: 2.4.0 + Version: 2.5.0 This template is overriding an official 'openapi-generator-maven-plugin' template. @@ -33,6 +33,6 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ \ No newline at end of file diff --git a/target/classes/templates/modelEnum.mustache b/target/classes/templates/modelEnum.mustache index 3ad4f49f..016106de 100644 --- a/target/classes/templates/modelEnum.mustache +++ b/target/classes/templates/modelEnum.mustache @@ -15,7 +15,7 @@ }}{{! Source: openapi-to-java-records-mustache-templates - Version: 2.4.0 + Version: 2.5.0 This template is overriding an official 'openapi-generator-maven-plugin' template. @@ -47,7 +47,7 @@ /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public {{{dataType}}} getValue() { return value; @@ -60,9 +60,9 @@ *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link {{classname}} } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link {{classname}} } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static {{classname}} fromValue(final {{{dataType}}} value) { for (final {{classname}} constant : {{classname}}.values()) { diff --git a/target/classes/templates/pojo.mustache b/target/classes/templates/pojo.mustache index 36ba8522..0c77ef3a 100644 --- a/target/classes/templates/pojo.mustache +++ b/target/classes/templates/pojo.mustache @@ -15,7 +15,7 @@ }}{{! Source: openapi-to-java-records-mustache-templates - Version: 2.4.0 + Version: 2.5.0 This template is overriding an official 'openapi-generator-maven-plugin' template. @@ -75,7 +75,7 @@ /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public {{{dataType}}} getValue() { return value; @@ -88,9 +88,9 @@ *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link {{datatypeWithEnum}} } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link {{datatypeWithEnum}} } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static {{datatypeWithEnum}} fromValue(final {{{dataType}}} value) { for (final {{datatypeWithEnum}} constant : {{datatypeWithEnum}}.values()) { diff --git a/target/classes/templates/serializableModel.mustache b/target/classes/templates/serializableModel.mustache index 30d85e70..3cc92e9d 100644 --- a/target/classes/templates/serializableModel.mustache +++ b/target/classes/templates/serializableModel.mustache @@ -15,7 +15,7 @@ }}{{! Source: openapi-to-java-records-mustache-templates - Version: 2.4.0 + Version: 2.5.0 This template is a custom template, and is used by `pojo.mustache`. diff --git a/target/classes/templates/useBeanValidation.mustache b/target/classes/templates/useBeanValidation.mustache index 07735098..ab279566 100644 --- a/target/classes/templates/useBeanValidation.mustache +++ b/target/classes/templates/useBeanValidation.mustache @@ -15,7 +15,7 @@ }}{{! Source: openapi-to-java-records-mustache-templates - Version: 2.4.0 + Version: 2.5.0 This template is a custom template, and is used by `pojo.mustache`. diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/DeprecatedExampleEnum.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/DeprecatedExampleEnum.java index 15968598..90c14e40 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/DeprecatedExampleEnum.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/DeprecatedExampleEnum.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -44,7 +44,7 @@ public enum DeprecatedExampleEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -57,9 +57,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link DeprecatedExampleEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link DeprecatedExampleEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static DeprecatedExampleEnum fromValue(final String value) { for (final DeprecatedExampleEnum constant : DeprecatedExampleEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/DeprecatedExampleRecord.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/DeprecatedExampleRecord.java index ab42d198..50da0dcc 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/DeprecatedExampleRecord.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/DeprecatedExampleRecord.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleEnum.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleEnum.java index 67f889c5..fc1b931b 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleEnum.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleEnum.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -50,7 +50,7 @@ public enum ExampleEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -63,9 +63,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleEnum fromValue(final String value) { for (final ExampleEnum constant : ExampleEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleEnumWithIntegerValues.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleEnumWithIntegerValues.java index 37d23763..08c679f8 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleEnumWithIntegerValues.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleEnumWithIntegerValues.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -43,7 +43,7 @@ public enum ExampleEnumWithIntegerValues { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public Integer getValue() { return value; @@ -56,9 +56,9 @@ public Integer getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleEnumWithIntegerValues } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleEnumWithIntegerValues } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleEnumWithIntegerValues fromValue(final Integer value) { for (final ExampleEnumWithIntegerValues constant : ExampleEnumWithIntegerValues.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecord.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecord.java index d823610c..6b4802c1 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecord.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecord.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithDefaultFields.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithDefaultFields.java index f17d85c3..2fa45a5d 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithDefaultFields.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithDefaultFields.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithNullableFieldsOfEachType.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithNullableFieldsOfEachType.java index 28aa811e..95aefcde 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithNullableFieldsOfEachType.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithNullableFieldsOfEachType.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithOneExtraAnnotation.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithOneExtraAnnotation.java index ee4b09dd..ba9662b8 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithOneExtraAnnotation.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithOneExtraAnnotation.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithRequiredFieldsOfEachType.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithRequiredFieldsOfEachType.java index b860c86a..ef1d02b1 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithRequiredFieldsOfEachType.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithRequiredFieldsOfEachType.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithTwoExtraAnnotations.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithTwoExtraAnnotations.java index 5a95e3bf..2a78e6a5 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithTwoExtraAnnotations.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/ExampleRecordWithTwoExtraAnnotations.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/RecordWithAllConstraints.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/RecordWithAllConstraints.java index 81722464..29beb71a 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/RecordWithAllConstraints.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/RecordWithAllConstraints.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/RecordWithInnerEnums.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/RecordWithInnerEnums.java index 75c45611..f5d35883 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/RecordWithInnerEnums.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalEnumTypeAnnotations/RecordWithInnerEnums.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -73,7 +73,7 @@ public enum ExampleInnerEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -86,9 +86,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleInnerEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleInnerEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleInnerEnum fromValue(final String value) { for (final ExampleInnerEnum constant : ExampleInnerEnum.values()) { @@ -120,7 +120,7 @@ public enum ExampleInnerTwoEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public Integer getValue() { return value; @@ -133,9 +133,9 @@ public Integer getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleInnerTwoEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleInnerTwoEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleInnerTwoEnum fromValue(final Integer value) { for (final ExampleInnerTwoEnum constant : ExampleInnerTwoEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/DeprecatedExampleEnum.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/DeprecatedExampleEnum.java index 77a725c0..042e9ee5 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/DeprecatedExampleEnum.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/DeprecatedExampleEnum.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -41,7 +41,7 @@ public enum DeprecatedExampleEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -54,9 +54,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link DeprecatedExampleEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link DeprecatedExampleEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static DeprecatedExampleEnum fromValue(final String value) { for (final DeprecatedExampleEnum constant : DeprecatedExampleEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/DeprecatedExampleRecord.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/DeprecatedExampleRecord.java index f7ab0b48..09a25c37 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/DeprecatedExampleRecord.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/DeprecatedExampleRecord.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleEnum.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleEnum.java index d56f66fe..198931ec 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleEnum.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleEnum.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -47,7 +47,7 @@ public enum ExampleEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -60,9 +60,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleEnum fromValue(final String value) { for (final ExampleEnum constant : ExampleEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleEnumWithIntegerValues.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleEnumWithIntegerValues.java index 45347ade..0321e25b 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleEnumWithIntegerValues.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleEnumWithIntegerValues.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -40,7 +40,7 @@ public enum ExampleEnumWithIntegerValues { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public Integer getValue() { return value; @@ -53,9 +53,9 @@ public Integer getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleEnumWithIntegerValues } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleEnumWithIntegerValues } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleEnumWithIntegerValues fromValue(final Integer value) { for (final ExampleEnumWithIntegerValues constant : ExampleEnumWithIntegerValues.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecord.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecord.java index ac6dd8b0..90785b89 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecord.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecord.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithDefaultFields.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithDefaultFields.java index ba562486..ef75e1ed 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithDefaultFields.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithDefaultFields.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithNullableFieldsOfEachType.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithNullableFieldsOfEachType.java index 454f02d5..b69203df 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithNullableFieldsOfEachType.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithNullableFieldsOfEachType.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithOneExtraAnnotation.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithOneExtraAnnotation.java index 2fe07f7c..77fa37de 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithOneExtraAnnotation.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithOneExtraAnnotation.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithRequiredFieldsOfEachType.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithRequiredFieldsOfEachType.java index f1a29538..7bdf7960 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithRequiredFieldsOfEachType.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithRequiredFieldsOfEachType.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithTwoExtraAnnotations.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithTwoExtraAnnotations.java index 7f359b7c..fff954d2 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithTwoExtraAnnotations.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/ExampleRecordWithTwoExtraAnnotations.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/RecordWithAllConstraints.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/RecordWithAllConstraints.java index cb7c2bfe..5cb0e001 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/RecordWithAllConstraints.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/RecordWithAllConstraints.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/RecordWithInnerEnums.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/RecordWithInnerEnums.java index 77027e4d..5d9aab38 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/RecordWithInnerEnums.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/additionalModelTypeAnnotations/RecordWithInnerEnums.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -73,7 +73,7 @@ public enum ExampleInnerEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -86,9 +86,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleInnerEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleInnerEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleInnerEnum fromValue(final String value) { for (final ExampleInnerEnum constant : ExampleInnerEnum.values()) { @@ -117,7 +117,7 @@ public enum ExampleInnerTwoEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public Integer getValue() { return value; @@ -130,9 +130,9 @@ public Integer getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleInnerTwoEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleInnerTwoEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleInnerTwoEnum fromValue(final Integer value) { for (final ExampleInnerTwoEnum constant : ExampleInnerTwoEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/DeprecatedExampleEnum.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/DeprecatedExampleEnum.java index 5be0766a..cc70a748 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/DeprecatedExampleEnum.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/DeprecatedExampleEnum.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -41,7 +41,7 @@ public enum DeprecatedExampleEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -54,9 +54,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link DeprecatedExampleEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link DeprecatedExampleEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static DeprecatedExampleEnum fromValue(final String value) { for (final DeprecatedExampleEnum constant : DeprecatedExampleEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/DeprecatedExampleRecord.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/DeprecatedExampleRecord.java index 52a25b6c..065adcae 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/DeprecatedExampleRecord.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/DeprecatedExampleRecord.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -42,7 +42,7 @@ public DeprecatedExampleRecord( this.field1 = field1; } - /** Builder class for {@link DeprecatedExampleRecord } */ + /** Builder class for {@link DeprecatedExampleRecord }. */ public static class Builder { private Boolean field1; @@ -51,8 +51,9 @@ public static class Builder { * Sets the value of {@link DeprecatedExampleRecord#field1 }. * *

NOTE: Pass-by-reference is used! - * @param field1 a boolean field - * @return this {@link Builder}-instance for method-chaining + * + * @param field1 a boolean field. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field1(final Boolean field1) { this.field1 = field1; @@ -64,7 +65,8 @@ public Builder field1(final Boolean field1) { * builder methods. * *

NOTE: Pass-by-reference is used! - * @return a new {@link DeprecatedExampleRecord }-instance + * + * @return a new {@link DeprecatedExampleRecord }-instance. */ public DeprecatedExampleRecord build() { return new DeprecatedExampleRecord( @@ -73,7 +75,7 @@ public DeprecatedExampleRecord build() { } } - /** Creates a {@link Builder}-instance. */ + /** Creates a new {@link Builder}-instance. */ public static DeprecatedExampleRecord.Builder builder() { return new DeprecatedExampleRecord.Builder(); } diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleEnum.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleEnum.java index c342bbb9..670a5961 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleEnum.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleEnum.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -47,7 +47,7 @@ public enum ExampleEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -60,9 +60,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleEnum fromValue(final String value) { for (final ExampleEnum constant : ExampleEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleEnumWithIntegerValues.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleEnumWithIntegerValues.java index 58841651..e14ad0ed 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleEnumWithIntegerValues.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleEnumWithIntegerValues.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -40,7 +40,7 @@ public enum ExampleEnumWithIntegerValues { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public Integer getValue() { return value; @@ -53,9 +53,9 @@ public Integer getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleEnumWithIntegerValues } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleEnumWithIntegerValues } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleEnumWithIntegerValues fromValue(final Integer value) { for (final ExampleEnumWithIntegerValues constant : ExampleEnumWithIntegerValues.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecord.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecord.java index 0b9db01b..1cf91999 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecord.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecord.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -40,7 +40,7 @@ public ExampleRecord( this.field1 = field1; } - /** Builder class for {@link ExampleRecord } */ + /** Builder class for {@link ExampleRecord }. */ public static class Builder { private Boolean field1; @@ -49,8 +49,9 @@ public static class Builder { * Sets the value of {@link ExampleRecord#field1 }. * *

NOTE: Pass-by-reference is used! - * @param field1 a boolean field - * @return this {@link Builder}-instance for method-chaining + * + * @param field1 a boolean field. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field1(final Boolean field1) { this.field1 = field1; @@ -62,7 +63,8 @@ public Builder field1(final Boolean field1) { * builder methods. * *

NOTE: Pass-by-reference is used! - * @return a new {@link ExampleRecord }-instance + * + * @return a new {@link ExampleRecord }-instance. */ public ExampleRecord build() { return new ExampleRecord( @@ -71,7 +73,7 @@ public ExampleRecord build() { } } - /** Creates a {@link Builder}-instance. */ + /** Creates a new {@link Builder}-instance. */ public static ExampleRecord.Builder builder() { return new ExampleRecord.Builder(); } diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithDefaultFields.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithDefaultFields.java index 5c85adb0..e3e830ba 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithDefaultFields.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithDefaultFields.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -40,7 +40,7 @@ public ExampleRecordWithDefaultFields( this.field1 = Objects.requireNonNullElse(field1, "someDefaultValue"); } - /** Builder class for {@link ExampleRecordWithDefaultFields } */ + /** Builder class for {@link ExampleRecordWithDefaultFields }. */ public static class Builder { private String field1; @@ -49,8 +49,9 @@ public static class Builder { * Sets the value of {@link ExampleRecordWithDefaultFields#field1 }. * *

NOTE: Pass-by-reference is used! - * @param field1 a String field with a default value - * @return this {@link Builder}-instance for method-chaining + * + * @param field1 a String field with a default value. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field1(final String field1) { this.field1 = field1; @@ -62,7 +63,8 @@ public Builder field1(final String field1) { * builder methods. * *

NOTE: Pass-by-reference is used! - * @return a new {@link ExampleRecordWithDefaultFields }-instance + * + * @return a new {@link ExampleRecordWithDefaultFields }-instance. */ public ExampleRecordWithDefaultFields build() { return new ExampleRecordWithDefaultFields( @@ -71,7 +73,7 @@ public ExampleRecordWithDefaultFields build() { } } - /** Creates a {@link Builder}-instance. */ + /** Creates a new {@link Builder}-instance. */ public static ExampleRecordWithDefaultFields.Builder builder() { return new ExampleRecordWithDefaultFields.Builder(); } diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithNullableFieldsOfEachType.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithNullableFieldsOfEachType.java index 98df176d..94ed84fb 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithNullableFieldsOfEachType.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithNullableFieldsOfEachType.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -65,7 +65,7 @@ public ExampleRecordWithNullableFieldsOfEachType( this.field6 = field6; } - /** Builder class for {@link ExampleRecordWithNullableFieldsOfEachType } */ + /** Builder class for {@link ExampleRecordWithNullableFieldsOfEachType }. */ public static class Builder { private Boolean field1; @@ -79,8 +79,9 @@ public static class Builder { * Sets the value of {@link ExampleRecordWithNullableFieldsOfEachType#field1 }. * *

NOTE: Pass-by-reference is used! - * @param field1 a Boolean field - * @return this {@link Builder}-instance for method-chaining + * + * @param field1 a Boolean field. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field1(final Boolean field1) { this.field1 = field1; @@ -91,8 +92,9 @@ public Builder field1(final Boolean field1) { * Sets the value of {@link ExampleRecordWithNullableFieldsOfEachType#field2 }. * *

NOTE: Pass-by-reference is used! - * @param field2 a String field - * @return this {@link Builder}-instance for method-chaining + * + * @param field2 a String field. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field2(final String field2) { this.field2 = field2; @@ -103,8 +105,9 @@ public Builder field2(final String field2) { * Sets the value of {@link ExampleRecordWithNullableFieldsOfEachType#field3 }. * *

NOTE: Pass-by-reference is used! - * @param field3 an Integer field - * @return this {@link Builder}-instance for method-chaining + * + * @param field3 an Integer field. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field3(final Integer field3) { this.field3 = field3; @@ -115,8 +118,9 @@ public Builder field3(final Integer field3) { * Sets the value of {@link ExampleRecordWithNullableFieldsOfEachType#field4 }. * *

NOTE: Pass-by-reference is used! - * @param field4 a Number field - * @return this {@link Builder}-instance for method-chaining + * + * @param field4 a Number field. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field4(final BigDecimal field4) { this.field4 = field4; @@ -127,8 +131,9 @@ public Builder field4(final BigDecimal field4) { * Sets the value of {@link ExampleRecordWithNullableFieldsOfEachType#field5 }. * *

NOTE: Pass-by-reference is used! - * @param field5 an Array of Boolean field - * @return this {@link Builder}-instance for method-chaining + * + * @param field5 an Array of Boolean field. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field5(final List field5) { this.field5 = field5; @@ -139,8 +144,9 @@ public Builder field5(final List field5) { * Sets the value of {@link ExampleRecordWithNullableFieldsOfEachType#field6 }. * *

NOTE: Pass-by-reference is used! - * @param field6 a Set field - * @return this {@link Builder}-instance for method-chaining + * + * @param field6 a Set field. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field6(final Set field6) { this.field6 = field6; @@ -152,7 +158,8 @@ public Builder field6(final Set field6) { * builder methods. * *

NOTE: Pass-by-reference is used! - * @return a new {@link ExampleRecordWithNullableFieldsOfEachType }-instance + * + * @return a new {@link ExampleRecordWithNullableFieldsOfEachType }-instance. */ public ExampleRecordWithNullableFieldsOfEachType build() { return new ExampleRecordWithNullableFieldsOfEachType( @@ -166,7 +173,7 @@ public ExampleRecordWithNullableFieldsOfEachType build() { } } - /** Creates a {@link Builder}-instance. */ + /** Creates a new {@link Builder}-instance. */ public static ExampleRecordWithNullableFieldsOfEachType.Builder builder() { return new ExampleRecordWithNullableFieldsOfEachType.Builder(); } diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithOneExtraAnnotation.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithOneExtraAnnotation.java index 9f9e0706..9f3890ee 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithOneExtraAnnotation.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithOneExtraAnnotation.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -48,7 +48,7 @@ public ExampleRecordWithOneExtraAnnotation( this.field2 = field2; } - /** Builder class for {@link ExampleRecordWithOneExtraAnnotation } */ + /** Builder class for {@link ExampleRecordWithOneExtraAnnotation }. */ public static class Builder { private Boolean field1; @@ -58,8 +58,9 @@ public static class Builder { * Sets the value of {@link ExampleRecordWithOneExtraAnnotation#field1 }. * *

NOTE: Pass-by-reference is used! - * @param field1 a boolean field with an extra field annotation - * @return this {@link Builder}-instance for method-chaining + * + * @param field1 a boolean field with an extra field annotation. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field1(final Boolean field1) { this.field1 = field1; @@ -70,8 +71,9 @@ public Builder field1(final Boolean field1) { * Sets the value of {@link ExampleRecordWithOneExtraAnnotation#field2 }. * *

NOTE: Pass-by-reference is used! - * @param field2 a boolean field with two extra field annotations - * @return this {@link Builder}-instance for method-chaining + * + * @param field2 a boolean field with two extra field annotations. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field2(final Boolean field2) { this.field2 = field2; @@ -83,7 +85,8 @@ public Builder field2(final Boolean field2) { * builder methods. * *

NOTE: Pass-by-reference is used! - * @return a new {@link ExampleRecordWithOneExtraAnnotation }-instance + * + * @return a new {@link ExampleRecordWithOneExtraAnnotation }-instance. */ public ExampleRecordWithOneExtraAnnotation build() { return new ExampleRecordWithOneExtraAnnotation( @@ -93,7 +96,7 @@ public ExampleRecordWithOneExtraAnnotation build() { } } - /** Creates a {@link Builder}-instance. */ + /** Creates a new {@link Builder}-instance. */ public static ExampleRecordWithOneExtraAnnotation.Builder builder() { return new ExampleRecordWithOneExtraAnnotation.Builder(); } diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithRequiredFieldsOfEachType.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithRequiredFieldsOfEachType.java index b516a9e8..b344c906 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithRequiredFieldsOfEachType.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithRequiredFieldsOfEachType.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -75,7 +75,7 @@ public ExampleRecordWithRequiredFieldsOfEachType( this.field8 = field8; } - /** Builder class for {@link ExampleRecordWithRequiredFieldsOfEachType } */ + /** Builder class for {@link ExampleRecordWithRequiredFieldsOfEachType }. */ public static class Builder { private Boolean field1; @@ -91,8 +91,9 @@ public static class Builder { * Sets the value of {@link ExampleRecordWithRequiredFieldsOfEachType#field1 }. * *

NOTE: Pass-by-reference is used! - * @param field1 a Boolean field - * @return this {@link Builder}-instance for method-chaining + * + * @param field1 a Boolean field. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field1(final Boolean field1) { this.field1 = field1; @@ -103,8 +104,9 @@ public Builder field1(final Boolean field1) { * Sets the value of {@link ExampleRecordWithRequiredFieldsOfEachType#field2 }. * *

NOTE: Pass-by-reference is used! - * @param field2 a String field - * @return this {@link Builder}-instance for method-chaining + * + * @param field2 a String field. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field2(final String field2) { this.field2 = field2; @@ -115,8 +117,9 @@ public Builder field2(final String field2) { * Sets the value of {@link ExampleRecordWithRequiredFieldsOfEachType#field3 }. * *

NOTE: Pass-by-reference is used! - * @param field3 an Integer field - * @return this {@link Builder}-instance for method-chaining + * + * @param field3 an Integer field. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field3(final Integer field3) { this.field3 = field3; @@ -127,8 +130,9 @@ public Builder field3(final Integer field3) { * Sets the value of {@link ExampleRecordWithRequiredFieldsOfEachType#field4 }. * *

NOTE: Pass-by-reference is used! - * @param field4 a Number field - * @return this {@link Builder}-instance for method-chaining + * + * @param field4 a Number field. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field4(final BigDecimal field4) { this.field4 = field4; @@ -139,8 +143,9 @@ public Builder field4(final BigDecimal field4) { * Sets the value of {@link ExampleRecordWithRequiredFieldsOfEachType#field5 }. * *

NOTE: Pass-by-reference is used! - * @param field5 an Array of Boolean field - * @return this {@link Builder}-instance for method-chaining + * + * @param field5 an Array of Boolean field. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field5(final List field5) { this.field5 = field5; @@ -151,8 +156,9 @@ public Builder field5(final List field5) { * Sets the value of {@link ExampleRecordWithRequiredFieldsOfEachType#field6 }. * *

NOTE: Pass-by-reference is used! - * @param field6 a Set field - * @return this {@link Builder}-instance for method-chaining + * + * @param field6 a Set field. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field6(final Set field6) { this.field6 = field6; @@ -163,8 +169,9 @@ public Builder field6(final Set field6) { * Sets the value of {@link ExampleRecordWithRequiredFieldsOfEachType#field7 }. * *

NOTE: Pass-by-reference is used! - * @param field7 sets the value of field7 - * @return this {@link Builder}-instance for method-chaining + * + * @param field7 sets the value of field7. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field7(final ExampleRecord field7) { this.field7 = field7; @@ -175,8 +182,9 @@ public Builder field7(final ExampleRecord field7) { * Sets the value of {@link ExampleRecordWithRequiredFieldsOfEachType#field8 }. * *

NOTE: Pass-by-reference is used! - * @param field8 sets the value of field8 - * @return this {@link Builder}-instance for method-chaining + * + * @param field8 sets the value of field8. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field8(final ExampleEnum field8) { this.field8 = field8; @@ -188,7 +196,8 @@ public Builder field8(final ExampleEnum field8) { * builder methods. * *

NOTE: Pass-by-reference is used! - * @return a new {@link ExampleRecordWithRequiredFieldsOfEachType }-instance + * + * @return a new {@link ExampleRecordWithRequiredFieldsOfEachType }-instance. */ public ExampleRecordWithRequiredFieldsOfEachType build() { return new ExampleRecordWithRequiredFieldsOfEachType( @@ -204,7 +213,7 @@ public ExampleRecordWithRequiredFieldsOfEachType build() { } } - /** Creates a {@link Builder}-instance. */ + /** Creates a new {@link Builder}-instance. */ public static ExampleRecordWithRequiredFieldsOfEachType.Builder builder() { return new ExampleRecordWithRequiredFieldsOfEachType.Builder(); } diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithTwoExtraAnnotations.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithTwoExtraAnnotations.java index d4b239ae..d0d829df 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithTwoExtraAnnotations.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/ExampleRecordWithTwoExtraAnnotations.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -42,7 +42,7 @@ public ExampleRecordWithTwoExtraAnnotations( this.field1 = field1; } - /** Builder class for {@link ExampleRecordWithTwoExtraAnnotations } */ + /** Builder class for {@link ExampleRecordWithTwoExtraAnnotations }. */ public static class Builder { private Boolean field1; @@ -51,8 +51,9 @@ public static class Builder { * Sets the value of {@link ExampleRecordWithTwoExtraAnnotations#field1 }. * *

NOTE: Pass-by-reference is used! - * @param field1 a boolean field - * @return this {@link Builder}-instance for method-chaining + * + * @param field1 a boolean field. + * @return this {@link Builder}-instance for method-chaining. */ public Builder field1(final Boolean field1) { this.field1 = field1; @@ -64,7 +65,8 @@ public Builder field1(final Boolean field1) { * builder methods. * *

NOTE: Pass-by-reference is used! - * @return a new {@link ExampleRecordWithTwoExtraAnnotations }-instance + * + * @return a new {@link ExampleRecordWithTwoExtraAnnotations }-instance. */ public ExampleRecordWithTwoExtraAnnotations build() { return new ExampleRecordWithTwoExtraAnnotations( @@ -73,7 +75,7 @@ public ExampleRecordWithTwoExtraAnnotations build() { } } - /** Creates a {@link Builder}-instance. */ + /** Creates a new {@link Builder}-instance. */ public static ExampleRecordWithTwoExtraAnnotations.Builder builder() { return new ExampleRecordWithTwoExtraAnnotations.Builder(); } diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/RecordWithAllConstraints.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/RecordWithAllConstraints.java index 5fb5d9d1..009b8cec 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/RecordWithAllConstraints.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/RecordWithAllConstraints.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -133,7 +133,7 @@ public RecordWithAllConstraints( this.bigDecimalMinimumAndMaximum = bigDecimalMinimumAndMaximum; } - /** Builder class for {@link RecordWithAllConstraints } */ + /** Builder class for {@link RecordWithAllConstraints }. */ public static class Builder { private String stringStandard; @@ -164,8 +164,9 @@ public static class Builder { * Sets the value of {@link RecordWithAllConstraints#stringStandard }. * *

NOTE: Pass-by-reference is used! - * @param stringStandard sets the value of stringStandard - * @return this {@link Builder}-instance for method-chaining + * + * @param stringStandard sets the value of stringStandard. + * @return this {@link Builder}-instance for method-chaining. */ public Builder stringStandard(final String stringStandard) { this.stringStandard = stringStandard; @@ -176,8 +177,9 @@ public Builder stringStandard(final String stringStandard) { * Sets the value of {@link RecordWithAllConstraints#stringDefault }. * *

NOTE: Pass-by-reference is used! - * @param stringDefault sets the value of stringDefault - * @return this {@link Builder}-instance for method-chaining + * + * @param stringDefault sets the value of stringDefault. + * @return this {@link Builder}-instance for method-chaining. */ public Builder stringDefault(final String stringDefault) { this.stringDefault = stringDefault; @@ -188,8 +190,9 @@ public Builder stringDefault(final String stringDefault) { * Sets the value of {@link RecordWithAllConstraints#stringNullable }. * *

NOTE: Pass-by-reference is used! - * @param stringNullable sets the value of stringNullable - * @return this {@link Builder}-instance for method-chaining + * + * @param stringNullable sets the value of stringNullable. + * @return this {@link Builder}-instance for method-chaining. */ public Builder stringNullable(final String stringNullable) { this.stringNullable = stringNullable; @@ -200,8 +203,9 @@ public Builder stringNullable(final String stringNullable) { * Sets the value of {@link RecordWithAllConstraints#stringRequired }. * *

NOTE: Pass-by-reference is used! - * @param stringRequired sets the value of stringRequired - * @return this {@link Builder}-instance for method-chaining + * + * @param stringRequired sets the value of stringRequired. + * @return this {@link Builder}-instance for method-chaining. */ public Builder stringRequired(final String stringRequired) { this.stringRequired = stringRequired; @@ -212,8 +216,9 @@ public Builder stringRequired(final String stringRequired) { * Sets the value of {@link RecordWithAllConstraints#stringRequiredNullable }. * *

NOTE: Pass-by-reference is used! - * @param stringRequiredNullable sets the value of stringRequiredNullable - * @return this {@link Builder}-instance for method-chaining + * + * @param stringRequiredNullable sets the value of stringRequiredNullable. + * @return this {@link Builder}-instance for method-chaining. */ public Builder stringRequiredNullable(final String stringRequiredNullable) { this.stringRequiredNullable = stringRequiredNullable; @@ -224,8 +229,9 @@ public Builder stringRequiredNullable(final String stringRequiredNullable) { * Sets the value of {@link RecordWithAllConstraints#stringRequiredPattern }. * *

NOTE: Pass-by-reference is used! - * @param stringRequiredPattern sets the value of stringRequiredPattern - * @return this {@link Builder}-instance for method-chaining + * + * @param stringRequiredPattern sets the value of stringRequiredPattern. + * @return this {@link Builder}-instance for method-chaining. */ public Builder stringRequiredPattern(final String stringRequiredPattern) { this.stringRequiredPattern = stringRequiredPattern; @@ -236,8 +242,9 @@ public Builder stringRequiredPattern(final String stringRequiredPattern) { * Sets the value of {@link RecordWithAllConstraints#stringEmailFormat }. * *

NOTE: Pass-by-reference is used! - * @param stringEmailFormat sets the value of stringEmailFormat - * @return this {@link Builder}-instance for method-chaining + * + * @param stringEmailFormat sets the value of stringEmailFormat. + * @return this {@link Builder}-instance for method-chaining. */ public Builder stringEmailFormat(final String stringEmailFormat) { this.stringEmailFormat = stringEmailFormat; @@ -248,8 +255,9 @@ public Builder stringEmailFormat(final String stringEmailFormat) { * Sets the value of {@link RecordWithAllConstraints#stringUuidFormat }. * *

NOTE: Pass-by-reference is used! - * @param stringUuidFormat sets the value of stringUuidFormat - * @return this {@link Builder}-instance for method-chaining + * + * @param stringUuidFormat sets the value of stringUuidFormat. + * @return this {@link Builder}-instance for method-chaining. */ public Builder stringUuidFormat(final UUID stringUuidFormat) { this.stringUuidFormat = stringUuidFormat; @@ -260,8 +268,9 @@ public Builder stringUuidFormat(final UUID stringUuidFormat) { * Sets the value of {@link RecordWithAllConstraints#stringMinLength }. * *

NOTE: Pass-by-reference is used! - * @param stringMinLength sets the value of stringMinLength - * @return this {@link Builder}-instance for method-chaining + * + * @param stringMinLength sets the value of stringMinLength. + * @return this {@link Builder}-instance for method-chaining. */ public Builder stringMinLength(final String stringMinLength) { this.stringMinLength = stringMinLength; @@ -272,8 +281,9 @@ public Builder stringMinLength(final String stringMinLength) { * Sets the value of {@link RecordWithAllConstraints#stringMaxLength }. * *

NOTE: Pass-by-reference is used! - * @param stringMaxLength sets the value of stringMaxLength - * @return this {@link Builder}-instance for method-chaining + * + * @param stringMaxLength sets the value of stringMaxLength. + * @return this {@link Builder}-instance for method-chaining. */ public Builder stringMaxLength(final String stringMaxLength) { this.stringMaxLength = stringMaxLength; @@ -284,8 +294,9 @@ public Builder stringMaxLength(final String stringMaxLength) { * Sets the value of {@link RecordWithAllConstraints#stringMinAndMaxLength }. * *

NOTE: Pass-by-reference is used! - * @param stringMinAndMaxLength sets the value of stringMinAndMaxLength - * @return this {@link Builder}-instance for method-chaining + * + * @param stringMinAndMaxLength sets the value of stringMinAndMaxLength. + * @return this {@link Builder}-instance for method-chaining. */ public Builder stringMinAndMaxLength(final String stringMinAndMaxLength) { this.stringMinAndMaxLength = stringMinAndMaxLength; @@ -296,8 +307,9 @@ public Builder stringMinAndMaxLength(final String stringMinAndMaxLength) { * Sets the value of {@link RecordWithAllConstraints#arrayMinItems }. * *

NOTE: Pass-by-reference is used! - * @param arrayMinItems sets the value of arrayMinItems - * @return this {@link Builder}-instance for method-chaining + * + * @param arrayMinItems sets the value of arrayMinItems. + * @return this {@link Builder}-instance for method-chaining. */ public Builder arrayMinItems(final List arrayMinItems) { this.arrayMinItems = arrayMinItems; @@ -308,8 +320,9 @@ public Builder arrayMinItems(final List arrayMinItems) { * Sets the value of {@link RecordWithAllConstraints#arrayMaxItems }. * *

NOTE: Pass-by-reference is used! - * @param arrayMaxItems sets the value of arrayMaxItems - * @return this {@link Builder}-instance for method-chaining + * + * @param arrayMaxItems sets the value of arrayMaxItems. + * @return this {@link Builder}-instance for method-chaining. */ public Builder arrayMaxItems(final List arrayMaxItems) { this.arrayMaxItems = arrayMaxItems; @@ -320,8 +333,9 @@ public Builder arrayMaxItems(final List arrayMaxItems) { * Sets the value of {@link RecordWithAllConstraints#arrayMinAndMaxItems }. * *

NOTE: Pass-by-reference is used! - * @param arrayMinAndMaxItems sets the value of arrayMinAndMaxItems - * @return this {@link Builder}-instance for method-chaining + * + * @param arrayMinAndMaxItems sets the value of arrayMinAndMaxItems. + * @return this {@link Builder}-instance for method-chaining. */ public Builder arrayMinAndMaxItems(final List arrayMinAndMaxItems) { this.arrayMinAndMaxItems = arrayMinAndMaxItems; @@ -332,8 +346,9 @@ public Builder arrayMinAndMaxItems(final List arrayMinAndMaxItems) { * Sets the value of {@link RecordWithAllConstraints#intMinimum }. * *

NOTE: Pass-by-reference is used! - * @param intMinimum sets the value of intMinimum - * @return this {@link Builder}-instance for method-chaining + * + * @param intMinimum sets the value of intMinimum. + * @return this {@link Builder}-instance for method-chaining. */ public Builder intMinimum(final Integer intMinimum) { this.intMinimum = intMinimum; @@ -344,8 +359,9 @@ public Builder intMinimum(final Integer intMinimum) { * Sets the value of {@link RecordWithAllConstraints#intMaximum }. * *

NOTE: Pass-by-reference is used! - * @param intMaximum sets the value of intMaximum - * @return this {@link Builder}-instance for method-chaining + * + * @param intMaximum sets the value of intMaximum. + * @return this {@link Builder}-instance for method-chaining. */ public Builder intMaximum(final Integer intMaximum) { this.intMaximum = intMaximum; @@ -356,8 +372,9 @@ public Builder intMaximum(final Integer intMaximum) { * Sets the value of {@link RecordWithAllConstraints#intMinimumAndMaximum }. * *

NOTE: Pass-by-reference is used! - * @param intMinimumAndMaximum sets the value of intMinimumAndMaximum - * @return this {@link Builder}-instance for method-chaining + * + * @param intMinimumAndMaximum sets the value of intMinimumAndMaximum. + * @return this {@link Builder}-instance for method-chaining. */ public Builder intMinimumAndMaximum(final Integer intMinimumAndMaximum) { this.intMinimumAndMaximum = intMinimumAndMaximum; @@ -368,8 +385,9 @@ public Builder intMinimumAndMaximum(final Integer intMinimumAndMaximum) { * Sets the value of {@link RecordWithAllConstraints#longMinimum }. * *

NOTE: Pass-by-reference is used! - * @param longMinimum sets the value of longMinimum - * @return this {@link Builder}-instance for method-chaining + * + * @param longMinimum sets the value of longMinimum. + * @return this {@link Builder}-instance for method-chaining. */ public Builder longMinimum(final Long longMinimum) { this.longMinimum = longMinimum; @@ -380,8 +398,9 @@ public Builder longMinimum(final Long longMinimum) { * Sets the value of {@link RecordWithAllConstraints#longMaximum }. * *

NOTE: Pass-by-reference is used! - * @param longMaximum sets the value of longMaximum - * @return this {@link Builder}-instance for method-chaining + * + * @param longMaximum sets the value of longMaximum. + * @return this {@link Builder}-instance for method-chaining. */ public Builder longMaximum(final Long longMaximum) { this.longMaximum = longMaximum; @@ -392,8 +411,9 @@ public Builder longMaximum(final Long longMaximum) { * Sets the value of {@link RecordWithAllConstraints#longMinimumAndMaximum }. * *

NOTE: Pass-by-reference is used! - * @param longMinimumAndMaximum sets the value of longMinimumAndMaximum - * @return this {@link Builder}-instance for method-chaining + * + * @param longMinimumAndMaximum sets the value of longMinimumAndMaximum. + * @return this {@link Builder}-instance for method-chaining. */ public Builder longMinimumAndMaximum(final Long longMinimumAndMaximum) { this.longMinimumAndMaximum = longMinimumAndMaximum; @@ -404,8 +424,9 @@ public Builder longMinimumAndMaximum(final Long longMinimumAndMaximum) { * Sets the value of {@link RecordWithAllConstraints#bigDecimalMinimum }. * *

NOTE: Pass-by-reference is used! - * @param bigDecimalMinimum sets the value of bigDecimalMinimum - * @return this {@link Builder}-instance for method-chaining + * + * @param bigDecimalMinimum sets the value of bigDecimalMinimum. + * @return this {@link Builder}-instance for method-chaining. */ public Builder bigDecimalMinimum(final BigDecimal bigDecimalMinimum) { this.bigDecimalMinimum = bigDecimalMinimum; @@ -416,8 +437,9 @@ public Builder bigDecimalMinimum(final BigDecimal bigDecimalMinimum) { * Sets the value of {@link RecordWithAllConstraints#bigDecimalMaximum }. * *

NOTE: Pass-by-reference is used! - * @param bigDecimalMaximum sets the value of bigDecimalMaximum - * @return this {@link Builder}-instance for method-chaining + * + * @param bigDecimalMaximum sets the value of bigDecimalMaximum. + * @return this {@link Builder}-instance for method-chaining. */ public Builder bigDecimalMaximum(final BigDecimal bigDecimalMaximum) { this.bigDecimalMaximum = bigDecimalMaximum; @@ -428,8 +450,9 @@ public Builder bigDecimalMaximum(final BigDecimal bigDecimalMaximum) { * Sets the value of {@link RecordWithAllConstraints#bigDecimalMinimumAndMaximum }. * *

NOTE: Pass-by-reference is used! - * @param bigDecimalMinimumAndMaximum sets the value of bigDecimalMinimumAndMaximum - * @return this {@link Builder}-instance for method-chaining + * + * @param bigDecimalMinimumAndMaximum sets the value of bigDecimalMinimumAndMaximum. + * @return this {@link Builder}-instance for method-chaining. */ public Builder bigDecimalMinimumAndMaximum(final BigDecimal bigDecimalMinimumAndMaximum) { this.bigDecimalMinimumAndMaximum = bigDecimalMinimumAndMaximum; @@ -441,7 +464,8 @@ public Builder bigDecimalMinimumAndMaximum(final BigDecimal bigDecimalMinimumAnd * builder methods. * *

NOTE: Pass-by-reference is used! - * @return a new {@link RecordWithAllConstraints }-instance + * + * @return a new {@link RecordWithAllConstraints }-instance. */ public RecordWithAllConstraints build() { return new RecordWithAllConstraints( @@ -472,7 +496,7 @@ public RecordWithAllConstraints build() { } } - /** Creates a {@link Builder}-instance. */ + /** Creates a new {@link Builder}-instance. */ public static RecordWithAllConstraints.Builder builder() { return new RecordWithAllConstraints.Builder(); } diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/RecordWithInnerEnums.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/RecordWithInnerEnums.java index e1b9392c..55cddb5e 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/RecordWithInnerEnums.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/generateBuilders/RecordWithInnerEnums.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -44,7 +44,7 @@ public RecordWithInnerEnums( this.exampleInnerTwo = exampleInnerTwo; } - /** Builder class for {@link RecordWithInnerEnums } */ + /** Builder class for {@link RecordWithInnerEnums }. */ public static class Builder { private ExampleInnerEnum exampleInner; @@ -54,8 +54,9 @@ public static class Builder { * Sets the value of {@link RecordWithInnerEnums#exampleInner }. * *

NOTE: Pass-by-reference is used! - * @param exampleInner Example of an inner enum class - * @return this {@link Builder}-instance for method-chaining + * + * @param exampleInner Example of an inner enum class. + * @return this {@link Builder}-instance for method-chaining. */ public Builder exampleInner(final ExampleInnerEnum exampleInner) { this.exampleInner = exampleInner; @@ -66,8 +67,9 @@ public Builder exampleInner(final ExampleInnerEnum exampleInner) { * Sets the value of {@link RecordWithInnerEnums#exampleInnerTwo }. * *

NOTE: Pass-by-reference is used! - * @param exampleInnerTwo Example of another inner enum class with integer values - * @return this {@link Builder}-instance for method-chaining + * + * @param exampleInnerTwo Example of another inner enum class with integer values. + * @return this {@link Builder}-instance for method-chaining. */ public Builder exampleInnerTwo(final ExampleInnerTwoEnum exampleInnerTwo) { this.exampleInnerTwo = exampleInnerTwo; @@ -79,7 +81,8 @@ public Builder exampleInnerTwo(final ExampleInnerTwoEnum exampleInnerTwo) { * builder methods. * *

NOTE: Pass-by-reference is used! - * @return a new {@link RecordWithInnerEnums }-instance + * + * @return a new {@link RecordWithInnerEnums }-instance. */ public RecordWithInnerEnums build() { return new RecordWithInnerEnums( @@ -89,7 +92,7 @@ public RecordWithInnerEnums build() { } } - /** Creates a {@link Builder}-instance. */ + /** Creates a new {@link Builder}-instance. */ public static RecordWithInnerEnums.Builder builder() { return new RecordWithInnerEnums.Builder(); } @@ -120,7 +123,7 @@ public enum ExampleInnerEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -133,9 +136,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleInnerEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleInnerEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleInnerEnum fromValue(final String value) { for (final ExampleInnerEnum constant : ExampleInnerEnum.values()) { @@ -164,7 +167,7 @@ public enum ExampleInnerTwoEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public Integer getValue() { return value; @@ -177,9 +180,9 @@ public Integer getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleInnerTwoEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleInnerTwoEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleInnerTwoEnum fromValue(final Integer value) { for (final ExampleInnerTwoEnum constant : ExampleInnerTwoEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/DeprecatedExampleEnum.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/DeprecatedExampleEnum.java index 0559294e..a3e039c5 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/DeprecatedExampleEnum.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/DeprecatedExampleEnum.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -42,7 +42,7 @@ public enum DeprecatedExampleEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -55,9 +55,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link DeprecatedExampleEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link DeprecatedExampleEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static DeprecatedExampleEnum fromValue(final String value) { for (final DeprecatedExampleEnum constant : DeprecatedExampleEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/DeprecatedExampleRecord.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/DeprecatedExampleRecord.java index 2cb2275c..d4268397 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/DeprecatedExampleRecord.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/DeprecatedExampleRecord.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleEnum.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleEnum.java index 5aa5bd6e..32541409 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleEnum.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleEnum.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -48,7 +48,7 @@ public enum ExampleEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -61,9 +61,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleEnum fromValue(final String value) { for (final ExampleEnum constant : ExampleEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleEnumWithIntegerValues.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleEnumWithIntegerValues.java index e425f559..2748e9f5 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleEnumWithIntegerValues.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleEnumWithIntegerValues.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -41,7 +41,7 @@ public enum ExampleEnumWithIntegerValues { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public Integer getValue() { return value; @@ -54,9 +54,9 @@ public Integer getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleEnumWithIntegerValues } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleEnumWithIntegerValues } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleEnumWithIntegerValues fromValue(final Integer value) { for (final ExampleEnumWithIntegerValues constant : ExampleEnumWithIntegerValues.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecord.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecord.java index e8a603df..140172fb 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecord.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecord.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithDefaultFields.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithDefaultFields.java index 8ebaf592..754d1922 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithDefaultFields.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithDefaultFields.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithNullableFieldsOfEachType.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithNullableFieldsOfEachType.java index 7871e5dd..e4ec1dbd 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithNullableFieldsOfEachType.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithNullableFieldsOfEachType.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithOneExtraAnnotation.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithOneExtraAnnotation.java index 46e2d349..ceb1cc79 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithOneExtraAnnotation.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithOneExtraAnnotation.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithRequiredFieldsOfEachType.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithRequiredFieldsOfEachType.java index 5a78ea2a..f33d4bed 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithRequiredFieldsOfEachType.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithRequiredFieldsOfEachType.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithTwoExtraAnnotations.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithTwoExtraAnnotations.java index 6e3b4c72..696cb01d 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithTwoExtraAnnotations.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/ExampleRecordWithTwoExtraAnnotations.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/RecordWithAllConstraints.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/RecordWithAllConstraints.java index 8fc110cf..f962391f 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/RecordWithAllConstraints.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/RecordWithAllConstraints.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/RecordWithInnerEnums.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/RecordWithInnerEnums.java index d804fd44..577f6e6f 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/RecordWithInnerEnums.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/serializableModel/RecordWithInnerEnums.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -74,7 +74,7 @@ public enum ExampleInnerEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -87,9 +87,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleInnerEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleInnerEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleInnerEnum fromValue(final String value) { for (final ExampleInnerEnum constant : ExampleInnerEnum.values()) { @@ -118,7 +118,7 @@ public enum ExampleInnerTwoEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public Integer getValue() { return value; @@ -131,9 +131,9 @@ public Integer getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleInnerTwoEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleInnerTwoEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleInnerTwoEnum fromValue(final Integer value) { for (final ExampleInnerTwoEnum constant : ExampleInnerTwoEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/DeprecatedExampleEnum.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/DeprecatedExampleEnum.java index 87dde029..555f2e6b 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/DeprecatedExampleEnum.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/DeprecatedExampleEnum.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -41,7 +41,7 @@ public enum DeprecatedExampleEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -54,9 +54,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link DeprecatedExampleEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link DeprecatedExampleEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static DeprecatedExampleEnum fromValue(final String value) { for (final DeprecatedExampleEnum constant : DeprecatedExampleEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/DeprecatedExampleRecord.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/DeprecatedExampleRecord.java index 01f1911e..b6289362 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/DeprecatedExampleRecord.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/DeprecatedExampleRecord.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleEnum.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleEnum.java index 0ef99147..5ea2dad0 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleEnum.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleEnum.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -47,7 +47,7 @@ public enum ExampleEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -60,9 +60,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleEnum fromValue(final String value) { for (final ExampleEnum constant : ExampleEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleEnumWithIntegerValues.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleEnumWithIntegerValues.java index 1d2c202a..e181d9bf 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleEnumWithIntegerValues.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleEnumWithIntegerValues.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -40,7 +40,7 @@ public enum ExampleEnumWithIntegerValues { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public Integer getValue() { return value; @@ -53,9 +53,9 @@ public Integer getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleEnumWithIntegerValues } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleEnumWithIntegerValues } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleEnumWithIntegerValues fromValue(final Integer value) { for (final ExampleEnumWithIntegerValues constant : ExampleEnumWithIntegerValues.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecord.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecord.java index 88b2d157..0aa1cbf2 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecord.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecord.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithDefaultFields.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithDefaultFields.java index 6c343fff..a3520303 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithDefaultFields.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithDefaultFields.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithNullableFieldsOfEachType.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithNullableFieldsOfEachType.java index 8d46d3fe..bbd0c614 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithNullableFieldsOfEachType.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithNullableFieldsOfEachType.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithOneExtraAnnotation.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithOneExtraAnnotation.java index 6cfc24b2..681d1e1f 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithOneExtraAnnotation.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithOneExtraAnnotation.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithRequiredFieldsOfEachType.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithRequiredFieldsOfEachType.java index 8eaf488d..781370cd 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithRequiredFieldsOfEachType.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithRequiredFieldsOfEachType.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithTwoExtraAnnotations.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithTwoExtraAnnotations.java index 82001002..aa3682e8 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithTwoExtraAnnotations.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/ExampleRecordWithTwoExtraAnnotations.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/RecordWithAllConstraints.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/RecordWithAllConstraints.java index bd84e3a5..9b33be7a 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/RecordWithAllConstraints.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/RecordWithAllConstraints.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/RecordWithInnerEnums.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/RecordWithInnerEnums.java index 131cbd7d..f88e1c23 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/RecordWithInnerEnums.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/standard/RecordWithInnerEnums.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -70,7 +70,7 @@ public enum ExampleInnerEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -83,9 +83,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleInnerEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleInnerEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleInnerEnum fromValue(final String value) { for (final ExampleInnerEnum constant : ExampleInnerEnum.values()) { @@ -114,7 +114,7 @@ public enum ExampleInnerTwoEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public Integer getValue() { return value; @@ -127,9 +127,9 @@ public Integer getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleInnerTwoEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleInnerTwoEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleInnerTwoEnum fromValue(final Integer value) { for (final ExampleInnerTwoEnum constant : ExampleInnerTwoEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/DeprecatedExampleEnum.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/DeprecatedExampleEnum.java index bb8f76a1..95421e81 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/DeprecatedExampleEnum.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/DeprecatedExampleEnum.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -43,7 +43,7 @@ public enum DeprecatedExampleEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -56,9 +56,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link DeprecatedExampleEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link DeprecatedExampleEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static DeprecatedExampleEnum fromValue(final String value) { for (final DeprecatedExampleEnum constant : DeprecatedExampleEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/DeprecatedExampleRecord.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/DeprecatedExampleRecord.java index 8af249dc..7fc0e695 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/DeprecatedExampleRecord.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/DeprecatedExampleRecord.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleEnum.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleEnum.java index 01508dc5..01cd0973 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleEnum.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleEnum.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -49,7 +49,7 @@ public enum ExampleEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -62,9 +62,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleEnum fromValue(final String value) { for (final ExampleEnum constant : ExampleEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleEnumWithIntegerValues.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleEnumWithIntegerValues.java index 87f190a5..7fb8027e 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleEnumWithIntegerValues.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleEnumWithIntegerValues.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -42,7 +42,7 @@ public enum ExampleEnumWithIntegerValues { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public Integer getValue() { return value; @@ -55,9 +55,9 @@ public Integer getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleEnumWithIntegerValues } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleEnumWithIntegerValues } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleEnumWithIntegerValues fromValue(final Integer value) { for (final ExampleEnumWithIntegerValues constant : ExampleEnumWithIntegerValues.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecord.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecord.java index 9d14fb43..370f426a 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecord.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecord.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithDefaultFields.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithDefaultFields.java index 94e5d010..85dfc271 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithDefaultFields.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithDefaultFields.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithNullableFieldsOfEachType.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithNullableFieldsOfEachType.java index 89e5cc7c..18a985af 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithNullableFieldsOfEachType.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithNullableFieldsOfEachType.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithOneExtraAnnotation.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithOneExtraAnnotation.java index d087476d..91296197 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithOneExtraAnnotation.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithOneExtraAnnotation.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithRequiredFieldsOfEachType.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithRequiredFieldsOfEachType.java index 17ad9a31..5723b929 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithRequiredFieldsOfEachType.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithRequiredFieldsOfEachType.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithTwoExtraAnnotations.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithTwoExtraAnnotations.java index 834ce410..7d1ed11c 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithTwoExtraAnnotations.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/ExampleRecordWithTwoExtraAnnotations.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/RecordWithAllConstraints.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/RecordWithAllConstraints.java index 0dd90abb..d8092104 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/RecordWithAllConstraints.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/RecordWithAllConstraints.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/RecordWithInnerEnums.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/RecordWithInnerEnums.java index 11855b0c..a290d5ac 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/RecordWithInnerEnums.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useBeanValidation/RecordWithInnerEnums.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -72,7 +72,7 @@ public enum ExampleInnerEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -85,9 +85,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleInnerEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleInnerEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleInnerEnum fromValue(final String value) { for (final ExampleInnerEnum constant : ExampleInnerEnum.values()) { @@ -116,7 +116,7 @@ public enum ExampleInnerTwoEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public Integer getValue() { return value; @@ -129,9 +129,9 @@ public Integer getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleInnerTwoEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleInnerTwoEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleInnerTwoEnum fromValue(final Integer value) { for (final ExampleInnerTwoEnum constant : ExampleInnerTwoEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/DeprecatedExampleEnum.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/DeprecatedExampleEnum.java index 77d99e37..6a783a0b 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/DeprecatedExampleEnum.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/DeprecatedExampleEnum.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -41,7 +41,7 @@ public enum DeprecatedExampleEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -54,9 +54,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link DeprecatedExampleEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link DeprecatedExampleEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static DeprecatedExampleEnum fromValue(final String value) { for (final DeprecatedExampleEnum constant : DeprecatedExampleEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/DeprecatedExampleRecord.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/DeprecatedExampleRecord.java index b0cb6484..d3e89d35 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/DeprecatedExampleRecord.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/DeprecatedExampleRecord.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleEnum.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleEnum.java index bc7ea7fd..9dae5d6c 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleEnum.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleEnum.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -47,7 +47,7 @@ public enum ExampleEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -60,9 +60,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleEnum fromValue(final String value) { for (final ExampleEnum constant : ExampleEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleEnumWithIntegerValues.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleEnumWithIntegerValues.java index 5c49bc09..6aefb688 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleEnumWithIntegerValues.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleEnumWithIntegerValues.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -40,7 +40,7 @@ public enum ExampleEnumWithIntegerValues { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public Integer getValue() { return value; @@ -53,9 +53,9 @@ public Integer getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleEnumWithIntegerValues } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleEnumWithIntegerValues } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleEnumWithIntegerValues fromValue(final Integer value) { for (final ExampleEnumWithIntegerValues constant : ExampleEnumWithIntegerValues.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecord.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecord.java index 88bf8378..47381a63 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecord.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecord.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithDefaultFields.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithDefaultFields.java index 7df7713d..95e2a25d 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithDefaultFields.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithDefaultFields.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithNullableFieldsOfEachType.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithNullableFieldsOfEachType.java index 25f3a154..02adf52b 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithNullableFieldsOfEachType.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithNullableFieldsOfEachType.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithOneExtraAnnotation.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithOneExtraAnnotation.java index 69530913..7350fb07 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithOneExtraAnnotation.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithOneExtraAnnotation.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithRequiredFieldsOfEachType.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithRequiredFieldsOfEachType.java index 77f2ef84..0a5f7afb 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithRequiredFieldsOfEachType.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithRequiredFieldsOfEachType.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithTwoExtraAnnotations.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithTwoExtraAnnotations.java index 12a581ea..d53dd534 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithTwoExtraAnnotations.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/ExampleRecordWithTwoExtraAnnotations.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/RecordWithAllConstraints.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/RecordWithAllConstraints.java index ae43f135..4cb21da7 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/RecordWithAllConstraints.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/RecordWithAllConstraints.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/RecordWithInnerEnums.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/RecordWithInnerEnums.java index becc46d0..a591c278 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/RecordWithInnerEnums.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useEnumCaseInsensitive/RecordWithInnerEnums.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -70,7 +70,7 @@ public enum ExampleInnerEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -83,9 +83,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleInnerEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleInnerEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleInnerEnum fromValue(final String value) { for (final ExampleInnerEnum constant : ExampleInnerEnum.values()) { @@ -114,7 +114,7 @@ public enum ExampleInnerTwoEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public Integer getValue() { return value; @@ -127,9 +127,9 @@ public Integer getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleInnerTwoEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleInnerTwoEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleInnerTwoEnum fromValue(final Integer value) { for (final ExampleInnerTwoEnum constant : ExampleInnerTwoEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/DeprecatedExampleEnum.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/DeprecatedExampleEnum.java index 3a66cb2a..f3bc8220 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/DeprecatedExampleEnum.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/DeprecatedExampleEnum.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -41,7 +41,7 @@ public enum DeprecatedExampleEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -54,9 +54,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link DeprecatedExampleEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link DeprecatedExampleEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static DeprecatedExampleEnum fromValue(final String value) { for (final DeprecatedExampleEnum constant : DeprecatedExampleEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/DeprecatedExampleRecord.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/DeprecatedExampleRecord.java index 53e54079..40ce89b2 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/DeprecatedExampleRecord.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/DeprecatedExampleRecord.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleEnum.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleEnum.java index 5b6f262b..cccc1328 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleEnum.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleEnum.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -47,7 +47,7 @@ public enum ExampleEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -60,9 +60,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleEnum fromValue(final String value) { for (final ExampleEnum constant : ExampleEnum.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleEnumWithIntegerValues.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleEnumWithIntegerValues.java index 0326c21d..767eb409 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleEnumWithIntegerValues.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleEnumWithIntegerValues.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -40,7 +40,7 @@ public enum ExampleEnumWithIntegerValues { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public Integer getValue() { return value; @@ -53,9 +53,9 @@ public Integer getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleEnumWithIntegerValues } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleEnumWithIntegerValues } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleEnumWithIntegerValues fromValue(final Integer value) { for (final ExampleEnumWithIntegerValues constant : ExampleEnumWithIntegerValues.values()) { diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecord.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecord.java index eadb8374..69d42998 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecord.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecord.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithDefaultFields.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithDefaultFields.java index 7532992d..d8ed1e8e 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithDefaultFields.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithDefaultFields.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithNullableFieldsOfEachType.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithNullableFieldsOfEachType.java index d0d8dd3b..be099bda 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithNullableFieldsOfEachType.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithNullableFieldsOfEachType.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithOneExtraAnnotation.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithOneExtraAnnotation.java index 8d7b5c44..8c6b03e2 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithOneExtraAnnotation.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithOneExtraAnnotation.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithRequiredFieldsOfEachType.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithRequiredFieldsOfEachType.java index d4d6061e..d817596d 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithRequiredFieldsOfEachType.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithRequiredFieldsOfEachType.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithTwoExtraAnnotations.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithTwoExtraAnnotations.java index e45cc3a7..18959340 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithTwoExtraAnnotations.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/ExampleRecordWithTwoExtraAnnotations.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/RecordWithAllConstraints.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/RecordWithAllConstraints.java index fc13ff3e..2b0cb976 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/RecordWithAllConstraints.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/RecordWithAllConstraints.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ diff --git a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/RecordWithInnerEnums.java b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/RecordWithInnerEnums.java index 7d0355c1..3b276e07 100644 --- a/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/RecordWithInnerEnums.java +++ b/target/generated-sources/openapi/src/src/gen/java/main/io/github/chrimle/example/useJakartaEe/RecordWithInnerEnums.java @@ -12,7 +12,7 @@ * openapi-to-java-records-mustache-templates. For further information, * questions, requesting features or reporting issues, please visit: * https://github.com/Chrimle/openapi-to-java-records-mustache-templates. - * Generated with Version: 2.4.0 + * Generated with Version: 2.5.0 * */ @@ -70,7 +70,7 @@ public enum ExampleInnerEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public String getValue() { return value; @@ -83,9 +83,9 @@ public String getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleInnerEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleInnerEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleInnerEnum fromValue(final String value) { for (final ExampleInnerEnum constant : ExampleInnerEnum.values()) { @@ -114,7 +114,7 @@ public enum ExampleInnerTwoEnum { /** * Gets the {@code value} of this enum. * - * @return value of this enum + * @return the value of this enum. */ public Integer getValue() { return value; @@ -127,9 +127,9 @@ public Integer getValue() { *

NOTE: if multiple enum constants have a matching value, the first enum constant is * returned, by the order they are declared. * - * @param value of the Enum - * @return a {@link ExampleInnerTwoEnum } with the matching value - * @throws IllegalArgumentException if no enum has a value matching the given value + * @param value of the enum. + * @return a {@link ExampleInnerTwoEnum } with the matching value. + * @throws IllegalArgumentException if no enum has a value matching the given value. */ public static ExampleInnerTwoEnum fromValue(final Integer value) { for (final ExampleInnerTwoEnum constant : ExampleInnerTwoEnum.values()) {