Kilo icon indicating copy to clipboard operation
Kilo copied to clipboard

Lightweight REST for Java

Results 3 Kilo issues
Sort by recently updated
recently updated
newest added

Where applicable, `instanceof` pattern matching should be used: https://openjdk.java.net/jeps/394 This is a non-functional change but is dependent on a baseline of Java 17 (LTS) or later.

Where applicable, switch expressions should be used: https://openjdk.java.net/jeps/361 This is a non-functional change but is dependent on a baseline of Java 17 (LTS) or later.

Java 15 introduced records as a preview feature: https://docs.oracle.com/en/java/javase/15/docs/api/java.base/java/lang/Record.html `BeanAdapter` should be updated to support reading from record types (e.g. via a static inner `RecordAdapter` class that implements `Map`) as...