- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getBeanClass (0.41 sec)
-
src/main/java/org/codelibs/core/beans/impl/FieldDescImpl.java
return FieldUtil.get(field, target); } @Override public <T> T getStaticFieldValue() { if (!isStatic()) { throw new FieldNotStaticRuntimeException(beanDesc.getBeanClass(), fieldName); } return FieldUtil.get(field); } @Override public void setFieldValue(final Object target, final Object value) { assertArgumentNotNull("target", target);Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/BeanDesc.java
public interface BeanDesc { /** * Returns the class of the Bean. * * @param <T> * The class of the Bean * @return The class of the Bean */ <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(); /**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/core/beans/impl/MethodDescImpl.java
} @Override public <T> T invokeStatic(final Object... args) { if (!isStatic()) { throw new MethodNotStaticRuntimeException(getBeanDesc().getBeanClass(), methodName); } return MethodUtil.invokeStatic(method, args); }Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 7.3K bytes - Viewed (0)