Update README

This commit is contained in:
Johannes Frohnmeyer 2022-11-01 11:50:02 +01:00
parent 0eb5a6aa2f
commit eff9c5abe7
Signed by: Johannes
GPG Key ID: E76429612C2929F4
2 changed files with 8 additions and 6 deletions

View File

@ -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

View File

@ -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) {
}
} }