Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for targetClass (0.06 sec)

  1. src/main/java/org/codelibs/core/lang/FieldUtil.java

                                valueClass == null ? null : valueClass.getName(), valueClass == null ? null : valueClass.getClassLoader(),
                                value, targetClass == null ? null : targetClass.getName(),
                                targetClass == null ? null : targetClass.getClassLoader()),
                        e);
            }
        }
    
        /**
         * インスタンスフィールドかどうか返します。
         *
         * @param field
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/ClassLoaderUtil.java

         * このクラスをロードしたクラスローダを返します。
         * </p>
         *
         * @param targetClass
         *            ターゲット・クラス。{@literal null}であってはいけません
         * @return クラスローダ
         * @throws IllegalStateException
         *             クラスローダを取得できなかった場合
         */
        public static ClassLoader getClassLoader(final Class<?> targetClass) {
            assertArgumentNotNull("targetClass", targetClass);
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/BeanFieldSetAccessibleFailureException.java

        private static final long serialVersionUID = 1L;
    
        protected final Class<?> targetClass;
    
        protected final transient Field targetField;
    
        public BeanFieldSetAccessibleFailureException(final Class<?> componentClass, final Field targetField, final Throwable cause) {
            super("ECL0115", new Object[] { targetField }, cause);
            this.targetClass = componentClass;
            this.targetField = targetField;
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Fri Mar 08 13:23:29 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/exception/BeanMethodSetAccessibleFailureException.java

        private static final long serialVersionUID = 1L;
    
        protected final Class<?> targetClass;
    
        protected final transient Method targetMethod;
    
        public BeanMethodSetAccessibleFailureException(final Class<?> componentClass, final Method targetMethod, final Throwable cause) {
            super("ECL0116", new Object[] { targetMethod }, cause);
            this.targetClass = componentClass;
            this.targetMethod = targetMethod;
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Fri Mar 08 13:23:29 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

                                        valueClass == null ? null : valueClass.getClassLoader(), convertedValue,
                                        targetClass == null ? null : targetClass.getName(),
                                        targetClass == null ? null : targetClass.getClassLoader() })
                                .initCause(t);
                    }
                } else {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

                final Class<?> targetClass;
                if (value.getClass() != String.class) {
                    targetClass = value.getClass();
                } else {
                    targetClass = destPropertyClass;
                }
                if (targetClass == null) {
                    return value;
                }
                for (final Class<?> clazz : iterable(targetClass, false)) {
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top