Eclipse Java EE IDE for Web Developers. Version: Luna Release (4.4.0) Build id: 20140612-0600
I\'m using the release version of Eclipse Luna for Java (Java EE), an
Looks like this might be Eclipse bug 430656.
Method reference content assist does work in some places but not in 'invocation contexts'.
A possible work-around: Eclipse Luna 4.4.0 and 4.4.1 does include support for method reference syntax, but not in the in-line context you're trying. It does work if you declare the method reference as a variable with a specific type, however. Like this:
Function<String, Object> methodRef = String::valueOf;
new LinkedList<String>().stream().map(methodRef);
In this code, content-assist works correctly at the ::
point.