Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for getPrevious (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/core/collection/SLinkedList.java

                }
                return null;
            }
    
            /**
             * Returns the previous entry.
             *
             * @return the previous entry
             */
            public Entry getPrevious() {
                if (previous != SLinkedList.this.header) {
                    return previous;
                }
                return null;
            }
    
            /**
             * Removes the element.
             */
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Jun 19 09:12:22 GMT 2025
    - 10.5K bytes
    - Click Count (0)
Back to Top