diff --git a/samples/client/others/java/okhttp-gson-streaming/docs/SomeObj.md b/samples/client/others/java/okhttp-gson-streaming/docs/SomeObj.md index 70bf3335f7be..d27439c839f1 100644 --- a/samples/client/others/java/okhttp-gson-streaming/docs/SomeObj.md +++ b/samples/client/others/java/okhttp-gson-streaming/docs/SomeObj.md @@ -19,7 +19,7 @@ | Name | Value | |---- | -----| -| SOMEOBJIDENTIFIER | "SomeObjIdentifier" | +| SOME_OBJ_IDENTIFIER | "SomeObjIdentifier" | ## Implemented Interfaces diff --git a/samples/client/others/java/okhttp-gson-streaming/src/main/java/org/openapitools/client/model/SomeObj.java b/samples/client/others/java/okhttp-gson-streaming/src/main/java/org/openapitools/client/model/SomeObj.java index 17e01e078d76..e9381eaf9386 100644 --- a/samples/client/others/java/okhttp-gson-streaming/src/main/java/org/openapitools/client/model/SomeObj.java +++ b/samples/client/others/java/okhttp-gson-streaming/src/main/java/org/openapitools/client/model/SomeObj.java @@ -59,7 +59,7 @@ public class SomeObj implements Serializable { */ @JsonAdapter(TypeEnum.Adapter.class) public enum TypeEnum { - SOMEOBJIDENTIFIER("SomeObjIdentifier"); + SOME_OBJ_IDENTIFIER("SomeObjIdentifier"); private String value; @@ -106,7 +106,7 @@ public static void validateJsonElement(JsonElement jsonElement) throws IOExcepti public static final String SERIALIZED_NAME_$_TYPE = "$_type"; @SerializedName(SERIALIZED_NAME_$_TYPE) - private TypeEnum $type = TypeEnum.SOMEOBJIDENTIFIER; + private TypeEnum $type = TypeEnum.SOME_OBJ_IDENTIFIER; public static final String SERIALIZED_NAME_ID = "id"; @SerializedName(SERIALIZED_NAME_ID) diff --git a/samples/client/petstore/java-helidon-client/mp/docs/ParentWithNullable.md b/samples/client/petstore/java-helidon-client/mp/docs/ParentWithNullable.md index b8fcf6b42e8f..e4d322985632 100644 --- a/samples/client/petstore/java-helidon-client/mp/docs/ParentWithNullable.md +++ b/samples/client/petstore/java-helidon-client/mp/docs/ParentWithNullable.md @@ -16,7 +16,7 @@ | Name | Value | |---- | -----| -| CHILDWITHNULLABLE | "ChildWithNullable" | +| CHILD_WITH_NULLABLE | "ChildWithNullable" | diff --git a/samples/client/petstore/java-helidon-client/mp/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java-helidon-client/mp/src/main/java/org/openapitools/client/model/ParentWithNullable.java index 25c24ff86020..d22980be614c 100644 --- a/samples/client/petstore/java-helidon-client/mp/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java-helidon-client/mp/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -31,7 +31,7 @@ public class ParentWithNullable { public enum TypeEnum { - CHILDWITHNULLABLE(String.valueOf("ChildWithNullable")); + CHILD_WITH_NULLABLE(String.valueOf("ChildWithNullable")); String value; diff --git a/samples/client/petstore/java-helidon-client/se/docs/ParentWithNullable.md b/samples/client/petstore/java-helidon-client/se/docs/ParentWithNullable.md index b8fcf6b42e8f..e4d322985632 100644 --- a/samples/client/petstore/java-helidon-client/se/docs/ParentWithNullable.md +++ b/samples/client/petstore/java-helidon-client/se/docs/ParentWithNullable.md @@ -16,7 +16,7 @@ | Name | Value | |---- | -----| -| CHILDWITHNULLABLE | "ChildWithNullable" | +| CHILD_WITH_NULLABLE | "ChildWithNullable" | diff --git a/samples/client/petstore/java-helidon-client/se/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java-helidon-client/se/src/main/java/org/openapitools/client/model/ParentWithNullable.java index 25c24ff86020..d22980be614c 100644 --- a/samples/client/petstore/java-helidon-client/se/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java-helidon-client/se/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -31,7 +31,7 @@ public class ParentWithNullable { public enum TypeEnum { - CHILDWITHNULLABLE(String.valueOf("ChildWithNullable")); + CHILD_WITH_NULLABLE(String.valueOf("ChildWithNullable")); String value; diff --git a/samples/client/petstore/java/apache-httpclient/docs/ParentWithNullable.md b/samples/client/petstore/java/apache-httpclient/docs/ParentWithNullable.md index b8fcf6b42e8f..e4d322985632 100644 --- a/samples/client/petstore/java/apache-httpclient/docs/ParentWithNullable.md +++ b/samples/client/petstore/java/apache-httpclient/docs/ParentWithNullable.md @@ -16,7 +16,7 @@ | Name | Value | |---- | -----| -| CHILDWITHNULLABLE | "ChildWithNullable" | +| CHILD_WITH_NULLABLE | "ChildWithNullable" | diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java index 698309e58205..e76102cef1d0 100644 --- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -55,7 +55,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ParentWithNullable.java index ba6d4233417d..e9bd66de2cea 100644 --- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -52,7 +52,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/client/petstore/java/jersey3/docs/ChildCat.md b/samples/client/petstore/java/jersey3/docs/ChildCat.md index 3f39832529b9..258d87e56998 100644 --- a/samples/client/petstore/java/jersey3/docs/ChildCat.md +++ b/samples/client/petstore/java/jersey3/docs/ChildCat.md @@ -16,7 +16,7 @@ | Name | Value | |---- | -----| -| CHILDCAT | "ChildCat" | +| CHILD_CAT | "ChildCat" | diff --git a/samples/client/petstore/java/native-async/docs/ChildCat.md b/samples/client/petstore/java/native-async/docs/ChildCat.md index 3f39832529b9..258d87e56998 100644 --- a/samples/client/petstore/java/native-async/docs/ChildCat.md +++ b/samples/client/petstore/java/native-async/docs/ChildCat.md @@ -16,7 +16,7 @@ | Name | Value | |---- | -----| -| CHILDCAT | "ChildCat" | +| CHILD_CAT | "ChildCat" | diff --git a/samples/client/petstore/java/native/docs/ChildCat.md b/samples/client/petstore/java/native/docs/ChildCat.md index 3f39832529b9..258d87e56998 100644 --- a/samples/client/petstore/java/native/docs/ChildCat.md +++ b/samples/client/petstore/java/native/docs/ChildCat.md @@ -16,7 +16,7 @@ | Name | Value | |---- | -----| -| CHILDCAT | "ChildCat" | +| CHILD_CAT | "ChildCat" | diff --git a/samples/client/petstore/java/restclient-swagger2/docs/ParentWithNullable.md b/samples/client/petstore/java/restclient-swagger2/docs/ParentWithNullable.md index b8fcf6b42e8f..e4d322985632 100644 --- a/samples/client/petstore/java/restclient-swagger2/docs/ParentWithNullable.md +++ b/samples/client/petstore/java/restclient-swagger2/docs/ParentWithNullable.md @@ -16,7 +16,7 @@ | Name | Value | |---- | -----| -| CHILDWITHNULLABLE | "ChildWithNullable" | +| CHILD_WITH_NULLABLE | "ChildWithNullable" | diff --git a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ParentWithNullable.java index fb4d556d8435..943d3fb58a66 100644 --- a/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/restclient-swagger2/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -53,7 +53,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/client/petstore/java/restclient/docs/ParentWithNullable.md b/samples/client/petstore/java/restclient/docs/ParentWithNullable.md index b8fcf6b42e8f..e4d322985632 100644 --- a/samples/client/petstore/java/restclient/docs/ParentWithNullable.md +++ b/samples/client/petstore/java/restclient/docs/ParentWithNullable.md @@ -16,7 +16,7 @@ | Name | Value | |---- | -----| -| CHILDWITHNULLABLE | "ChildWithNullable" | +| CHILD_WITH_NULLABLE | "ChildWithNullable" | diff --git a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java index d39b380dd3ab..07a1426e3715 100644 --- a/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/restclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -52,7 +52,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/client/petstore/java/resteasy/docs/ParentWithNullable.md b/samples/client/petstore/java/resteasy/docs/ParentWithNullable.md index b8fcf6b42e8f..e4d322985632 100644 --- a/samples/client/petstore/java/resteasy/docs/ParentWithNullable.md +++ b/samples/client/petstore/java/resteasy/docs/ParentWithNullable.md @@ -16,7 +16,7 @@ | Name | Value | |---- | -----| -| CHILDWITHNULLABLE | "ChildWithNullable" | +| CHILD_WITH_NULLABLE | "ChildWithNullable" | diff --git a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/ParentWithNullable.java index bbe3720262dc..70d0641758a5 100644 --- a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -52,7 +52,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/client/petstore/java/resttemplate-withXml/docs/ParentWithNullable.md b/samples/client/petstore/java/resttemplate-withXml/docs/ParentWithNullable.md index b8fcf6b42e8f..e4d322985632 100644 --- a/samples/client/petstore/java/resttemplate-withXml/docs/ParentWithNullable.md +++ b/samples/client/petstore/java/resttemplate-withXml/docs/ParentWithNullable.md @@ -16,7 +16,7 @@ | Name | Value | |---- | -----| -| CHILDWITHNULLABLE | "ChildWithNullable" | +| CHILD_WITH_NULLABLE | "ChildWithNullable" | diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ParentWithNullable.java index 43984e8a1a2f..d98b5fd728cd 100644 --- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -62,7 +62,7 @@ public class ParentWithNullable { @XmlEnum(String.class) public enum TypeEnum { @XmlEnumValue("ChildWithNullable") - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/client/petstore/java/resttemplate/docs/ParentWithNullable.md b/samples/client/petstore/java/resttemplate/docs/ParentWithNullable.md index b8fcf6b42e8f..e4d322985632 100644 --- a/samples/client/petstore/java/resttemplate/docs/ParentWithNullable.md +++ b/samples/client/petstore/java/resttemplate/docs/ParentWithNullable.md @@ -16,7 +16,7 @@ | Name | Value | |---- | -----| -| CHILDWITHNULLABLE | "ChildWithNullable" | +| CHILD_WITH_NULLABLE | "ChildWithNullable" | diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ParentWithNullable.java index 2fff6a8b42bf..a16519b20237 100644 --- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -52,7 +52,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/client/petstore/java/vertx/docs/ParentWithNullable.md b/samples/client/petstore/java/vertx/docs/ParentWithNullable.md index b8fcf6b42e8f..e4d322985632 100644 --- a/samples/client/petstore/java/vertx/docs/ParentWithNullable.md +++ b/samples/client/petstore/java/vertx/docs/ParentWithNullable.md @@ -16,7 +16,7 @@ | Name | Value | |---- | -----| -| CHILDWITHNULLABLE | "ChildWithNullable" | +| CHILD_WITH_NULLABLE | "ChildWithNullable" | diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ParentWithNullable.java index bbe3720262dc..70d0641758a5 100644 --- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -52,7 +52,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/client/petstore/java/webclient-jakarta/docs/ParentWithNullable.md b/samples/client/petstore/java/webclient-jakarta/docs/ParentWithNullable.md index b8fcf6b42e8f..e4d322985632 100644 --- a/samples/client/petstore/java/webclient-jakarta/docs/ParentWithNullable.md +++ b/samples/client/petstore/java/webclient-jakarta/docs/ParentWithNullable.md @@ -16,7 +16,7 @@ | Name | Value | |---- | -----| -| CHILDWITHNULLABLE | "ChildWithNullable" | +| CHILD_WITH_NULLABLE | "ChildWithNullable" | diff --git a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/ParentWithNullable.java index d39b380dd3ab..07a1426e3715 100644 --- a/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/webclient-jakarta/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -52,7 +52,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/client/petstore/java/webclient-swagger2/docs/ParentWithNullable.md b/samples/client/petstore/java/webclient-swagger2/docs/ParentWithNullable.md index b8fcf6b42e8f..e4d322985632 100644 --- a/samples/client/petstore/java/webclient-swagger2/docs/ParentWithNullable.md +++ b/samples/client/petstore/java/webclient-swagger2/docs/ParentWithNullable.md @@ -16,7 +16,7 @@ | Name | Value | |---- | -----| -| CHILDWITHNULLABLE | "ChildWithNullable" | +| CHILD_WITH_NULLABLE | "ChildWithNullable" | diff --git a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/ParentWithNullable.java index 634460a39169..5261f27c960f 100644 --- a/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/webclient-swagger2/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -53,7 +53,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/client/petstore/java/webclient/docs/ParentWithNullable.md b/samples/client/petstore/java/webclient/docs/ParentWithNullable.md index b8fcf6b42e8f..e4d322985632 100644 --- a/samples/client/petstore/java/webclient/docs/ParentWithNullable.md +++ b/samples/client/petstore/java/webclient/docs/ParentWithNullable.md @@ -16,7 +16,7 @@ | Name | Value | |---- | -----| -| CHILDWITHNULLABLE | "ChildWithNullable" | +| CHILD_WITH_NULLABLE | "ChildWithNullable" | diff --git a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java index bbe3720262dc..70d0641758a5 100644 --- a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java +++ b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/model/ParentWithNullable.java @@ -52,7 +52,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ParentWithNullable.java index 7f22f98893a0..88da60ed7ac0 100644 --- a/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/client/petstore/spring-http-interface-reactive/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -39,7 +39,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ParentWithNullableDto.java b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ParentWithNullableDto.java index 25b8ecc12951..7659ce6da9ce 100644 --- a/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ParentWithNullableDto.java +++ b/samples/client/petstore/spring-http-interface/src/main/java/org/openapitools/model/ParentWithNullableDto.java @@ -40,7 +40,7 @@ public class ParentWithNullableDto { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/documentation/html2/index.html b/samples/documentation/html2/index.html index 192377211d37..4a8a3c3e0ff7 100644 --- a/samples/documentation/html2/index.html +++ b/samples/documentation/html2/index.html @@ -9524,19 +9524,19 @@

Description - SetDashCookie + SetMinusCookie String Cookie authentication key for use with the `api_key` apiKey authentication. - XDashRateDashLimit + XMinusRateMinusLimit Integer int32 calls per hour allowed by the user - XDashExpiresDashAfter + XMinusExpiresMinusAfter Date date-time date in UTC when token expires diff --git a/samples/openapi3/client/petstore/java/jersey2-java8/docs/ChildCat.md b/samples/openapi3/client/petstore/java/jersey2-java8/docs/ChildCat.md index 3f39832529b9..258d87e56998 100644 --- a/samples/openapi3/client/petstore/java/jersey2-java8/docs/ChildCat.md +++ b/samples/openapi3/client/petstore/java/jersey2-java8/docs/ChildCat.md @@ -16,7 +16,7 @@ | Name | Value | |---- | -----| -| CHILDCAT | "ChildCat" | +| CHILD_CAT | "ChildCat" | diff --git a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ParentWithNullable.java index 71b111df63a1..e2f3a569110d 100644 --- a/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/openapi3/client/petstore/spring-cloud-oas3-fakeapi/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -41,7 +41,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ParentWithNullable.java index 71b111df63a1..e2f3a569110d 100644 --- a/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/openapi3/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -41,7 +41,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ParentWithNullable.java index 71b111df63a1..e2f3a569110d 100644 --- a/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/openapi3/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -41,7 +41,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/server/petstore/java-helidon-server/mp/src/main/java/org/openapitools/server/model/ParentWithNullable.java b/samples/server/petstore/java-helidon-server/mp/src/main/java/org/openapitools/server/model/ParentWithNullable.java index 3ea71056eb04..67de84d392df 100644 --- a/samples/server/petstore/java-helidon-server/mp/src/main/java/org/openapitools/server/model/ParentWithNullable.java +++ b/samples/server/petstore/java-helidon-server/mp/src/main/java/org/openapitools/server/model/ParentWithNullable.java @@ -31,7 +31,7 @@ public class ParentWithNullable { public enum TypeEnum { - CHILDWITHNULLABLE(String.valueOf("ChildWithNullable")); + CHILD_WITH_NULLABLE(String.valueOf("ChildWithNullable")); private String value; diff --git a/samples/server/petstore/java-helidon-server/se/src/main/java/org/openapitools/server/model/ParentWithNullable.java b/samples/server/petstore/java-helidon-server/se/src/main/java/org/openapitools/server/model/ParentWithNullable.java index 74568b6224ed..e458a6ed3400 100644 --- a/samples/server/petstore/java-helidon-server/se/src/main/java/org/openapitools/server/model/ParentWithNullable.java +++ b/samples/server/petstore/java-helidon-server/se/src/main/java/org/openapitools/server/model/ParentWithNullable.java @@ -18,7 +18,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/server/petstore/jaxrs-jersey/src/gen/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/jaxrs-jersey/src/gen/java/org/openapitools/model/ParentWithNullable.java index ea64a9001ab1..d1c02beeeb6a 100644 --- a/samples/server/petstore/jaxrs-jersey/src/gen/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/jaxrs-jersey/src/gen/java/org/openapitools/model/ParentWithNullable.java @@ -43,7 +43,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/server/petstore/jaxrs-spec-quarkus-mutiny/src/gen/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/jaxrs-spec-quarkus-mutiny/src/gen/java/org/openapitools/model/ParentWithNullable.java index 71a74089618f..3676a58d6444 100644 --- a/samples/server/petstore/jaxrs-spec-quarkus-mutiny/src/gen/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/jaxrs-spec-quarkus-mutiny/src/gen/java/org/openapitools/model/ParentWithNullable.java @@ -26,7 +26,7 @@ public class ParentWithNullable implements Serializable { public enum TypeEnum { - CHILDWITHNULLABLE(String.valueOf("ChildWithNullable")); + CHILD_WITH_NULLABLE(String.valueOf("ChildWithNullable")); private String value; diff --git a/samples/server/petstore/jaxrs/jersey3/src/gen/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/jaxrs/jersey3/src/gen/java/org/openapitools/model/ParentWithNullable.java index 5d33f3ee315d..8670771c3d13 100644 --- a/samples/server/petstore/jaxrs/jersey3/src/gen/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/jaxrs/jersey3/src/gen/java/org/openapitools/model/ParentWithNullable.java @@ -42,7 +42,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ParentWithNullable.java index 71b111df63a1..e2f3a569110d 100644 --- a/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/spring-boot-defaultInterface-unhandledException/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -41,7 +41,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ParentWithNullable.java index 84ce56fb6d26..3167eafb215d 100644 --- a/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/springboot-beanvalidation-no-nullable/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -38,7 +38,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ParentWithNullable.java index 5a5e30d04dd6..ad63816b7d71 100644 --- a/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/springboot-beanvalidation/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -42,7 +42,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ParentWithNullable.java index 5a5e30d04dd6..ad63816b7d71 100644 --- a/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/springboot-delegate-j8/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -42,7 +42,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ParentWithNullable.java index 1ac5ed427457..e7827c061e0a 100644 --- a/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/springboot-delegate/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -42,7 +42,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ParentWithNullable.java index 5a5e30d04dd6..ad63816b7d71 100644 --- a/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/springboot-implicitHeaders/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -42,7 +42,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ParentWithNullable.java index 5a5e30d04dd6..ad63816b7d71 100644 --- a/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/springboot-reactive-noResponseEntity/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -42,7 +42,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ParentWithNullable.java index 5a5e30d04dd6..ad63816b7d71 100644 --- a/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/springboot-reactive/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -42,7 +42,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ParentWithNullable.java b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ParentWithNullable.java index 4ebf6b46e8af..c35004724ddc 100644 --- a/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ParentWithNullable.java +++ b/samples/server/petstore/springboot-useoptional/src/main/java/org/openapitools/model/ParentWithNullable.java @@ -42,7 +42,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ParentWithNullable.java b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ParentWithNullable.java index c35e091fd013..fac645243591 100644 --- a/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ParentWithNullable.java +++ b/samples/server/petstore/springboot-virtualan/src/main/java/org/openapitools/virtualan/model/ParentWithNullable.java @@ -41,7 +41,7 @@ public class ParentWithNullable { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value; diff --git a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ParentWithNullableDto.java b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ParentWithNullableDto.java index df3f71f0c768..b8d0fcb4a060 100644 --- a/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ParentWithNullableDto.java +++ b/samples/server/petstore/springboot/src/main/java/org/openapitools/model/ParentWithNullableDto.java @@ -43,7 +43,7 @@ public class ParentWithNullableDto { * Gets or Sets type */ public enum TypeEnum { - CHILDWITHNULLABLE("ChildWithNullable"); + CHILD_WITH_NULLABLE("ChildWithNullable"); private String value;