Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for propertyName (0.2 sec)

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

        public PropertyDescImpl(final String propertyName, final Class<?> propertyType, final Method readMethod, final Method writeMethod,
                final Field field, final BeanDesc beanDesc) {
            assertArgumentNotEmpty("propertyName", propertyName);
            assertArgumentNotNull("propertyType", propertyType);
            assertArgumentNotNull("beanDesc", beanDesc);
    
            this.propertyName = propertyName;
            this.propertyType = propertyType;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 15.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/PropertyNotFoundRuntimeException.java

        private final Class<?> targetClass;
    
        private final String propertyName;
    
        /**
         * {@link PropertyNotFoundRuntimeException}を返します。
         *
         * @param targetClass
         *            ターゲットクラス
         * @param propertyName
         *            プロパティ名
         */
        public PropertyNotFoundRuntimeException(final Class<?> targetClass, final String propertyName) {
            super("ECL0065", asArray(targetClass.getName(), propertyName));
    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/BeanDesc.java

        /**
         * {@link PropertyDesc}を持っているかどうかを返します。
         *
         * @param propertyName
         *            プロパティ名。{@literal null}や空文字列であってはいけません
         * @return {@link PropertyDesc}を持っているかどうか
         */
        boolean hasPropertyDesc(String propertyName);
    
        /**
         * {@link PropertyDesc}を返します。
         *
         * @param propertyName
         *            プロパティ名。{@literal null}や空文字列であってはいけません
         * @return {@link PropertyDesc}
    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)
  4. src/main/java/org/codelibs/core/exception/ConverterRuntimeException.java

            this.propertyName = propertyName;
            this.value = value;
        }
    
        /**
         * プロパティ名を返します。
         *
         * @return プロパティ名
         */
        public String getPropertyName() {
            return propertyName;
        }
    
        /**
         * 値を返します。
         *
         * @return 値
         */
        public Object getValue() {
            return value;
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

        /**
         * 操作の対象に含めるプロパティ名を追加します。
         *
         * @param propertyNames
         *            プロパティ名の並び。{@literal null}や空配列であってはいけません
         * @return このインスタンス自身
         */
        public CopyOptions include(final CharSequence... propertyNames) {
            assertArgumentNotEmpty("propertyNames", propertyNames);
    
            includePropertyNames.addAll(toStringList(propertyNames));
            return this;
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/IllegalPropertyRuntimeException.java

        private final String propertyName;
    
        /**
         * {@link IllegalPropertyRuntimeException}を作成します。
         *
         * @param targetClass
         *            ターゲットクラス
         * @param propertyName
         *            プロパティ名
         * @param cause
         *            原因となった例外
         */
        public IllegalPropertyRuntimeException(final Class<?> targetClass, final String propertyName, final Throwable cause) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

        }
    
        @Override
        public boolean hasPropertyDesc(final String propertyName) {
            assertArgumentNotEmpty("propertyName", propertyName);
    
            return propertyDescCache.get(propertyName) != null;
        }
    
        @Override
        public PropertyDesc getPropertyDesc(final String propertyName) {
            assertArgumentNotEmpty("propertyName", propertyName);
    
            final PropertyDesc pd = propertyDescCache.get(propertyName);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 26.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java

         *
         * @param propertyNames
         *            プロパティ名の配列。{@literal null}や空配列であってはいけません
         * @return 操作の対象に含めるプロパティ名を指定した{@link CopyOptions}
         * @see CopyOptions#include(CharSequence...)
         */
        public static CopyOptions include(final CharSequence... propertyNames) {
            return new CopyOptions().include(propertyNames);
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/misc/DynamicProperties.java

            lastModified = propertiesFile.lastModified();
            prop.loadFromXML(in);
            properties = prop;
        }
    
        @Override
        public Enumeration<?> propertyNames() {
            return getProperties().propertyNames();
        }
    
        @Override
        public Object put(final Object key, final Object value) {
            return getProperties().put(key, value);
        }
    
        @Override
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 9.6K bytes
    - Viewed (0)
Back to top