Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getTypeVariables (0.08 sec)

  1. src/main/java/org/codelibs/core/beans/BeanDesc.java

        <T> Class<T> getBeanClass();
    
        /**
         * Returns a map from type variables to type arguments.
         *
         * @return A map from type variables to type arguments
         */
        Map<TypeVariable<?>, Type> getTypeVariables();
    
        /**
         * Returns whether the {@link PropertyDesc} exists.
         *
         * @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)
  2. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

                    break;
                }
            }
        }
    
        private void setUpParameterizedClassDesc() {
            final Map<TypeVariable<?>, Type> typeVariables = ((BeanDescImpl) beanDesc).getTypeVariables();
            if (field != null) {
                parameterizedClassDesc = ParameterizedClassDescFactory.createParameterizedClassDesc(field, typeVariables);
            } else if (readMethod != null) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 15.1K bytes
    - Viewed (0)
Back to top