Update README
This commit is contained in:
parent
0eb5a6aa2f
commit
eff9c5abe7
10
README.md
10
README.md
@ -12,18 +12,16 @@ The goal of this AP is to
|
|||||||
- Utility methods
|
- Utility methods
|
||||||
- Strict no-reflection enforcement via `-AgsonCompileNoReflect`
|
- Strict no-reflection enforcement via `-AgsonCompileNoReflect`
|
||||||
- Comments via `@GComment`
|
- Comments via `@GComment`
|
||||||
|
- Records
|
||||||
|
- Nested serializable types
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
- Arrays
|
- Arrays
|
||||||
- Nested serializable types
|
- Collections (Sets, Lists, Queues, Deques)
|
||||||
|
- Maps
|
||||||
- Date
|
- Date
|
||||||
- Enums
|
- Enums
|
||||||
- Lists
|
|
||||||
- Maps
|
|
||||||
- Queues
|
|
||||||
- Records
|
|
||||||
- Support for nested types from libraries
|
- Support for nested types from libraries
|
||||||
- Sets
|
|
||||||
- Static classes (for configs)
|
- Static classes (for configs)
|
||||||
- GPrefer to bypass builder/constructor recovery
|
- GPrefer to bypass builder/constructor recovery
|
||||||
|
|
||||||
|
@ -30,4 +30,8 @@ public class Main {
|
|||||||
@GComment("Yes!")
|
@GComment("Yes!")
|
||||||
public boolean primitive;
|
public boolean primitive;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@GSerializable
|
||||||
|
public record ExampleRecord(String hello, ExamplePojo2 pojo) {
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user