You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But compile fails as the error Unknown class: Foo.NestedEnum is produced since it imports my.project.b.Foo.NestedEnum and not the parent class my.project.b.Foo.
Thank you for your work, love the library :)
The text was updated successfully, but these errors were encountered:
…server code
e.g.
```
public class Foo {
public enum NestedEnum {
A, B, C
}
}
```
```
@controller
class TestController {
@post
void foo(Foo.NestedEnum value) {
System.out.println(value);
}
```
…server code (#455)
e.g.
```
public class Foo {
public enum NestedEnum {
A, B, C
}
}
```
```
@controller
class TestController {
@post
void foo(Foo.NestedEnum value) {
System.out.println(value);
}
```
Repost from Discord :)
Using
avaje-http
andavaje-http-javalin-generator
2.4The following code,
produces:
at compile.
But compile fails as the error
Unknown class: Foo.NestedEnum
is produced since it importsmy.project.b.Foo.NestedEnum
and not the parent classmy.project.b.Foo
.Thank you for your work, love the library :)
The text was updated successfully, but these errors were encountered: