- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for getLastEntry (0.04 sec)
-
src/main/java/org/codelibs/core/collection/SLinkedList.java
* Returns the last element. * * @return the last element */ public E getLast() { if (isEmpty()) { throw new NoSuchElementException(); } return getLastEntry().element; } /** * Returns the first entry. * * @return the first entry */ public Entry getFirstEntry() { if (isEmpty()) { return null; }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 10.5K bytes - Viewed (0)