Eclipse gives me content assist on functions. For example String. ctrl+space shows me String.valueOf(), among others.
With a stream and using ::, this does not work, however. For example, new LinkedList<String>().stream().map(String:: ctrl+space does not help me in completing it to new LinkedList<String>().stream().map(String::valueOf);.
Is there some option or plugin to enable this? I use Eclipse Luna (4.4.0).