Skip to content

Commit 719309f

Browse files
authored
Update java-features.md
1 parent d6914ea commit 719309f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java-features.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ after you extracted value from `Any`, then you can bind it to object using bind-
9595

9696
The default decoding/encoding mode is reflection. We can improve the performance by dynamically generated decoder/encoder class using javassist. It will generate the most efficient code for the given class of input. However, dynamically code generation is not available in all platforms, so static code generation is also provided as an option.
9797

98-
* reflection: the default
99-
* dynamic code generation: require javassist library dependency
98+
* reflection: the default, and support private class or field
99+
* dynamic code generation: require javassist library dependency, public class/field only
100100
* static code generation: also an option
101101

102102
## Dynamic code generation

0 commit comments

Comments
 (0)