- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for notNull (0.04 sec)
-
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java
* message: The size of {item} must be between {min} and {max}. * </pre> * @param property The property name for the message. (NotNull) * @param min The parameter min for message. (NotNull) * @param max The parameter max for message. (NotNull) * @return this. (NotNull) */ public FessMessages addConstraintsSizeMessage(String property, String min, String max) { assertPropertyNotNull(property);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 119.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
public static final String LABELS_LOGIN_UPDATE = "{labels.login.update}"; /** * Assert the property is not null. * @param property The value of the property. (NotNull) */ protected void assertPropertyNotNull(String property) { if (property == null) { String msg = "The argument 'property' for message should not be null.";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 146.4K bytes - Viewed (0)