Rule RSPEC-4276 requires the use of specialized functional interfaces whenever possible, ad example changing Function<Long, T> to LongFunction<T>. However, since LongFunction<T> does not extends Function<Long, T>, default methods compose and andThen are missing, therefore
LongFunction<T> mapper = ...;
mapper.compose(Long::parseLong);
is a compile error.
This is a false positive and should be excluded.
Using java 11, eclipse 2020-09 (4.17.0), SonarLint 5.4.0