Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for assertIndex (0.06 seconds)

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

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.collection;
    
    import static org.codelibs.core.misc.AssertionUtil.assertIndex;
    
    import java.io.Externalizable;
    import java.io.IOException;
    import java.io.ObjectInput;
    import java.io.ObjectOutput;
    import java.lang.reflect.Array;
    import java.util.NoSuchElementException;
    
    /**
    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)
  2. src/main/java/org/codelibs/core/collection/ArrayMap.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.collection;
    
    import static org.codelibs.core.misc.AssertionUtil.assertIndex;
    import static org.codelibs.core.misc.AssertionUtil.assertState;
    
    import java.io.Externalizable;
    import java.io.IOException;
    import java.io.ObjectInput;
    import java.io.ObjectOutput;
    import java.lang.reflect.Array;
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat Nov 22 11:21:59 GMT 2025
    - 20.1K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/core/misc/AssertionUtil.java

         * @param description
         *            The description of why the index is invalid.
         * @throws ClIndexOutOfBoundsException
         *             If {@code expression} is false.
         */
        public static void assertIndex(final boolean expression, final String description) {
            if (!expression) {
                throw new ClIndexOutOfBoundsException(description);
            }
        }
    
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Jul 31 08:16:49 GMT 2025
    - 12.5K bytes
    - Click Count (0)
Back to Top