We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JDK8's Optional doesn't have a constructor that can be used but instead relies on factory methods Optional.of and Optional.ofNullable.
Optional.of
Optional.ofNullable
However, this library still supports JDK7 due to wide enough use. To enable Optional support, it needs to be implemented using only reflection code.
The text was updated successfully, but these errors were encountered:
#9: support JDK8's Optional by means of reflection so it still compil…
6ed2b9c
…es under JDK7
#9: fix problem with generics
e2ce26b
No branches or pull requests
JDK8's Optional doesn't have a constructor that can be used but instead relies on factory methods
Optional.of
andOptional.ofNullable
.However, this library still supports JDK7 due to wide enough use. To enable Optional support, it needs to be implemented using only reflection code.
The text was updated successfully, but these errors were encountered: