- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for SLinkedList (0.12 sec)
-
src/main/java/org/codelibs/core/collection/SLinkedList.java
* @author higa * @param <E> * 要素の型 * */ 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; /** * {@link SLinkedList}を作成します。 */ public SLinkedList() { header.next = header; header.previous = header; }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/core/timer/TimeoutManager.java
/** * Timerのための{@link Thread}です。 */ protected Thread thread; /** * {@link TimeoutTask}管理用のリストです。 */ protected final SLinkedList<TimeoutTask> timeoutTaskList = new SLinkedList<>(); private TimeoutManager() { } /** * シングルトン用のインスタンスを返します。 * * @return シングルトン用のインスタンス */ public static TimeoutManager getInstance() {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 8K bytes - Viewed (0) -
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 Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 8.3K bytes - Viewed (0)