- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for propertyName (0.89 sec)
-
src/main/java/org/codelibs/core/exception/IllegalPropertyRuntimeException.java
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ConverterRuntimeException.java
super("ECL0097", asArray(propertyName, value, cause), cause); this.propertyName = propertyName; this.value = value; } /** * Returns the property name. * * @return Property name */ public String getPropertyName() { return propertyName; } /**
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java
return __modifiedProperties.getPropertyNames(); } public void mymodifyProperty(String propertyName) { registerModifiedProperty(propertyName); } public void mymodifyPropertyCancel(String propertyName) { __modifiedProperties.remove(propertyName); } public void clearModifiedInfo() { __modifiedProperties.clear(); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/PropertyNotFoundRuntimeException.java
*/ private final String propertyName; /** * Returns a {@link PropertyNotFoundRuntimeException}. * * @param targetClass the target class * @param propertyName the property name */ public PropertyNotFoundRuntimeException(final Class<?> targetClass, final String propertyName) { super("ECL0065", asArray(targetClass.getName(), propertyName)); this.targetClass = targetClass;Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java
public PropertyDescImpl(final String propertyName, final Class<?> propertyType, final Method readMethod, final Method writeMethod, final Field field, final BeanDesc beanDesc) { assertArgumentNotEmpty("propertyName", propertyName); assertArgumentNotNull("propertyType", propertyType); assertArgumentNotNull("beanDesc", beanDesc); this.propertyName = propertyName; this.propertyType = propertyType;
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 15.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java
for (final Map.Entry<String, Object> entry : httpClientPropertyMap.entrySet()) { final String propertyName = entry.getKey(); if (beanDesc.hasPropertyDesc(propertyName)) { final PropertyDesc propertyDesc = beanDesc.getPropertyDesc(propertyName); propertyDesc.setValue(closeableHttpClient, entry.getValue()); } else {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/BeanDesc.java
* Returns whether the {@link PropertyDesc} exists. * * @param propertyName * The property name. Must not be {@literal null} or empty string * @return Whether the {@link PropertyDesc} exists */ boolean hasPropertyDesc(String propertyName); /** * Returns the {@link PropertyDesc}. * * @param propertyName * The property name. Must not be {@literal null} or empty stringRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptions.java
* * @param propertyNames * Array of property names. Must not be {@literal null} or an empty array. * @return This instance itself */ public CopyOptions include(final CharSequence... propertyNames) { assertArgumentNotEmpty("propertyNames", propertyNames); includePropertyNames.addAll(toStringList(propertyNames)); return this; } /**Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 17.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java
* Validate the protected word string. * @param action The action. * @param values The values. * @param propertyName The property name. * @param hook The error hook. */ private static void validateProtwordsString(final FessBaseAction action, final String values, final String propertyName, final VaErrorHook hook) { // TODO validation }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java
final VaErrorHook hook) { if (values.length == 0) { return; } for (final String value : values) { if (value.indexOf(',') >= 0) { action.throwValidationError(messages -> { messages.addErrorsInvalidStrIsIncluded(propertyName, value, ","); }, hook);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.7K bytes - Viewed (1)