Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SLinkedList (0.03 sec)

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

     *
     * @author higa
     * @param <E> the element type
     */
    public class SLinkedList<E> implements Cloneable, Externalizable {
    
        static final long serialVersionUID = 1L;
    
        private transient Entry header = new Entry(null, null, null);
    
        private transient int size = 0;
    
        /**
         * Creates an {@link SLinkedList}.
         */
        public SLinkedList() {
            header.next = header;
            header.previous = header;
        }
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/timer/TimeoutManager.java

        /**
         * {@link Thread} for the timer.
         */
        protected Thread thread;
    
        /**
         * A list for managing {@link TimeoutTask}.
         */
        protected final SLinkedList<TimeoutTask> timeoutTaskList = new SLinkedList<>();
    
        private TimeoutManager() {
        }
    
        /**
         * Returns the instance for the singleton.
         *
         * @return the instance for the singleton
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/collection/SLinkedListTest.java

    import org.codelibs.core.io.SerializeUtil;
    import org.junit.Test;
    
    /**
     * @author higa
     */
    public class SLinkedListTest {
    
        private final SLinkedList<String> list = new SLinkedList<String>();
    
        /**
         * @throws Exception
         */
        @Test
        public void testGetFirstEntry() throws Exception {
            assertThat(list.getFirstEntry(), is(nullValue()));
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 8.3K bytes
    - Viewed (0)
Back to top