- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 19 for propertyNames (0.06 sec)
-
src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java
return new CopyOptions().converter(converter, propertyNames); } /** * Returns a {@link CopyOptions} with a date converter applied. * * @param pattern * The date pattern. Must not be {@literal null} or an empty string. * @param propertyNames
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 10.6K 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: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 17.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/DynamicProperties.java
lastModified = propertiesFile.lastModified(); prop.loadFromXML(in); properties = prop; } @Override public Enumeration<?> propertyNames() { return getProperties().propertyNames(); } @Override public Object put(final Object key, final Object value) { return getProperties().put(key, value); } @Override
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
} @Override public boolean hasPropertyDesc(final String propertyName) { assertArgumentNotEmpty("propertyName", propertyName); return propertyDescCache.get(propertyName) != null; } @Override public PropertyDesc getPropertyDesc(final String propertyName) { assertArgumentNotEmpty("propertyName", propertyName); final PropertyDesc pd = propertyDescCache.get(propertyName);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/opensearch/user/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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.9K 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: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java
return "set" + capitalizeName(propertyName); } public boolean isValidPropertyName(String propertyName) { return propertyName != null && propertyName.length() > 0; } private String capitalizeName(String name) { if (name == null || name.isEmpty()) { return name; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.6K bytes - Viewed (0) -
guava-testlib/test/com/google/common/collect/testing/features/FeatureEnumTest.java
rootLocaleFormat("%s must be inherited.", annotationClass), annotationClass.getAnnotation(Inherited.class)); for (String propertyName : new String[] {"value", "absent"}) { Method method = null; try { method = annotationClass.getMethod(propertyName); } catch (NoSuchMethodException e) { throw new AssertionError("Annotation is missing required method", e); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 20:34:52 UTC 2025 - 4.3K 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 string
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 7.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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11K bytes - Viewed (0)