- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getPropertyDescs (0.75 seconds)
-
src/main/java/org/codelibs/core/beans/BeanDesc.java
* <p> * From the obtained {@link BeanDesc}, you can retrieve metadata of the properties, fields, constructors, and methods of the target JavaBeans. * </p> * * <pre> * for (PropertyDesc propertyDesc : beanDesc.getPropertyDescs()) { * propertyDesc.getValue(foo); // Retrieve the value of Foo's property * } * * for (FieldDesc fieldDesc : beanDesc.getFieldDescs()) { * fieldDesc.getFieldValue(foo); // Retrieve the value of Foo's fieldCreated: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 24 01:52:43 GMT 2025 - 7.9K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
} @Override public int getPropertyDescSize() { return propertyDescCache.size(); } @Override public Iterable<PropertyDesc> getPropertyDescs() { return unmodifiableCollection(propertyDescCache.values()); } @Override public boolean hasFieldDesc(final String fieldName) { assertArgumentNotEmpty("fieldName", fieldName);Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 25.8K bytes - Click Count (1) -
src/main/java/org/codelibs/core/beans/util/BeanUtil.java
final BeanDesc srcBeanDesc = BeanDescFactory.getBeanDesc(src.getClass()); final BeanDesc destBeanDesc = BeanDescFactory.getBeanDesc(dest.getClass()); for (final PropertyDesc srcPropertyDesc : srcBeanDesc.getPropertyDescs()) { final String srcPropertyName = srcPropertyDesc.getPropertyName(); if (!srcPropertyDesc.isReadable() || !options.isTargetProperty(srcPropertyName)) { continue; }
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 23.5K bytes - Click Count (0)