As the title says, the package doesn't currently autocomplete when inner classes are involved. Consider the example:
javax.ws.rs.core.Response.ok().build();
Response.ok() returns an instance of the static inner class Response.ResponseBuilder, on which I can call the build() method. However, this does not seem to get recognised by the package.
As the title says, the package doesn't currently autocomplete when inner classes are involved. Consider the example:
Response.ok() returns an instance of the static inner class Response.ResponseBuilder, on which I can call the build() method. However, this does not seem to get recognised by the package.