src/share/classes/java/util/function/LongSupplier.java

Print this page
rev 6137 : 8004015: Add Extends and deaults for basic functional interface types
Summary: Adds the appropriate extends and default methods for  core functional interfaces used by the JSR335 libraries.
Reviewed-by: duke

*** 30,40 **** * <p/>This is the primitive type specialization of {@link Supplier} for * {@code long} and also may be used as a {@code Supplier<Long>}. * * @since 1.8 */ ! public interface LongSupplier { /** * Returns a {@code long} value. * * @return a {@code long} value. --- 30,43 ---- * <p/>This is the primitive type specialization of {@link Supplier} for * {@code long} and also may be used as a {@code Supplier<Long>}. * * @since 1.8 */ ! public interface LongSupplier extends Supplier<Long> { ! ! @Override ! public default Long get() { return getAsLong(); } /** * Returns a {@code long} value. * * @return a {@code long} value.