Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for propertyType (0.07 sec)

  1. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

            if (propertyType.isPrimitive()) {
                return (T) convertPrimitiveWrapper(arg);
            } else if (Number.class.isAssignableFrom(propertyType)) {
                return (T) convertNumber(arg);
            } else if (java.util.Date.class.isAssignableFrom(propertyType)) {
                return (T) convertDate(arg);
            } else if (Boolean.class.isAssignableFrom(propertyType)) {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

            final Class<?> propertyType = readMethod.getReturnType();
            PropertyDescImpl propDesc = (PropertyDescImpl) propertyDescCache.get(propertyName);
            if (propDesc == null) {
                propDesc = new PropertyDescImpl(propertyName, propertyType, readMethod, null, null, this);
                addPropertyDesc(propDesc);
            } else if (propDesc.getPropertyType() != propertyType) {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

         * <pre>
         * message: {item} cannot convert as {propertyType}.
         * </pre>
         * @param property The property name for the message. (NotNull)
         * @param propertyType The parameter propertyType for message. (NotNull)
         * @return this. (NotNull)
         */
        public FessMessages addConstraintsTypeAnyMessage(String property, String propertyType) {
            assertPropertyNotNull(property);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top