Searched defs:getAsLong (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/util/function/
H A DLongSupplier.java35 * whose functional method is {@link #getAsLong()}.
48 long getAsLong(); method in interface:LongSupplier
/libcore/ojluni/src/main/java/java/util/
H A DOptionalLong.java35 * {@code getAsLong()} will return the value.
112 public long getAsLong() { method in class:OptionalLong
157 * @return the value if present otherwise the result of {@code other.getAsLong()}
162 return isPresent ? value : other.getAsLong();

Completed in 197 milliseconds