Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for fieldName (0.21 sec)

  1. src/main/java/org/codelibs/core/exception/FieldNotStaticRuntimeException.java

        private final String fieldName;
    
        /**
         * {@link FieldNotStaticRuntimeException}を作成します。
         *
         * @param targetClass
         *            ターゲットクラス
         * @param fieldName
         *            フィールド名
         */
        public FieldNotStaticRuntimeException(final Class<?> targetClass, final String fieldName) {
            super("ECL0099", asArray(targetClass.getName(), fieldName));
            this.targetClass = targetClass;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/FieldNotFoundRuntimeException.java

        private final String fieldName;
    
        /**
         * {@link FieldNotFoundRuntimeException}を作成します。
         *
         * @param targetClass
         *            ターゲットクラス
         * @param fieldName
         *            フィールド名
         */
        public FieldNotFoundRuntimeException(final Class<?> targetClass, final String fieldName) {
            super("ECL0070", asArray(targetClass.getName(), fieldName));
            this.targetClass = targetClass;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/impl/FieldDescImpl.java

        /** このフィールドを所有するクラスの{@link BeanDesc} */
        protected final BeanDesc beanDesc;
    
        /** フィールド */
        protected final Field field;
    
        /** フィールド名 */
        protected final String fieldName;
    
        /** フィールドの型 */
        protected final Class<?> fieldType;
    
        /** パラメータ化された型の情報 */
        protected final ParameterizedClassDesc parameterizedClassDesc;
    
        /**
         * インスタンスを構築します。
         *
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/BeanDesc.java

        /**
         * {@link FieldDesc}を持っているかどうかを返します。
         *
         * @param fieldName
         *            フィールド名。{@literal null}や空文字列であってはいけません
         * @return {@link FieldDesc}を持っているかどうか
         */
        boolean hasFieldDesc(String fieldName);
    
        /**
         * {@link FieldDesc}を返します。
         *
         * @param fieldName
         *            フィールド名。{@literal null}や空文字列であってはいけません
         * @return {@link FieldDesc}
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/exception/NoSuchFieldRuntimeException.java

            this.targetClass = targetClass;
            this.fieldName = fieldName;
        }
    
        /**
         * ターゲットクラスを返します。
         *
         * @return ターゲットクラス
         */
        public Class<?> getTargetClass() {
            return targetClass;
        }
    
        /**
         * フィールド名を返します。
         *
         * @return フィールド名
         */
        public String getFieldName() {
            return fieldName;
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.9K bytes
    - Viewed (0)
Back to top