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

/libcore/ojluni/src/main/java/java/util/function/
H A DIntSupplier.java35 * whose functional method is {@link #getAsInt()}.
48 int getAsInt(); method in interface:IntSupplier
/libcore/ojluni/src/main/java/java/util/
H A DOptionalInt.java35 * {@code getAsInt()} will return the value.
113 public int getAsInt() { method in class:OptionalInt
158 * @return the value if present otherwise the result of {@code other.getAsInt()}
163 return isPresent ? value : other.getAsInt();

Completed in 21 milliseconds