- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ClIndexOutOfBoundsException (0.21 sec)
-
src/main/java/org/codelibs/core/misc/AssertionUtil.java
* @param description * 不正なindexであることの説明 * @throws ClIndexOutOfBoundsException * {@code expression}がfalseの場合。 */ public static void assertIndex(final boolean expression, final String description) { if (!expression) { throw new ClIndexOutOfBoundsException(description); } }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 12.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/ArrayMapTest.java
import java.util.HashMap; import java.util.Iterator; import java.util.Map; import java.util.NoSuchElementException; import org.codelibs.core.exception.ClIllegalStateException; import org.codelibs.core.exception.ClIndexOutOfBoundsException; import org.codelibs.core.io.SerializeUtil; import org.junit.After; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 10.7K bytes - Viewed (0)