- Sort Score
- Num 10 results
- Language All
Results 31 - 33 of 33 for assertArgumentNotEmpty (0.3 seconds)
-
src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java
* governing permissions and limitations under the License. */ package org.codelibs.core.beans.impl; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotEmpty; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull; import static org.codelibs.core.misc.AssertionUtil.assertState; import java.lang.reflect.Constructor; import java.lang.reflect.Field;
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 24 01:52:43 GMT 2025 - 15.1K bytes - Click Count (0) -
CLAUDE.md
- **Constants classes**: Same pattern ### Argument Validation Use `AssertionUtil` at method entry: - `AssertionUtil.assertArgumentNotNull("argName", value)` - `AssertionUtil.assertArgumentNotEmpty("argName", value)` ### Exception Handling - Wrap checked exceptions in runtime exceptions from `org.codelibs.core.exception` - Use error codes (e.g., "ECL0008" = null argument) ### Test Structure
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Mar 12 03:38:56 GMT 2026 - 3K bytes - Click Count (0) -
README.md
CoreLib follows a **utility-class pattern** where most functionality is exposed through static methods: - **Assertion-based validation** - All methods validate inputs using `AssertionUtil.assertArgumentNotNull()` and `AssertionUtil.assertArgumentNotEmpty()` - **Exception wrapping** - Checked exceptions are consistently wrapped in runtime exceptions (e.g., `ClassNotFoundException` → `ClassNotFoundRuntimeException`)
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sun Aug 31 02:56:02 GMT 2025 - 12.7K bytes - Click Count (0)