We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eb390d commit 16efcd9Copy full SHA for 16efcd9
http-generator-core/src/main/java/io/avaje/http/generator/core/UType.java
@@ -11,6 +11,10 @@ public interface UType {
11
static UType parse(TypeMirror type) {
12
return Util.parseType(type);
13
}
14
+ /** Create the UType from the given String. */
15
+ static UType parse(String type) {
16
+ return Util.parse(type);
17
+ }
18
19
UType VOID = new VoidType();
20
@@ -49,7 +53,7 @@ default String param1() {
49
53
50
54
51
55
/** Return the raw generic parameter if this UType is a Collection. */
52
- default String paramRaw() {
56
+ default UType paramRaw() {
57
return null;
58
59
0 commit comments