Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for value1 (0.23 sec)

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

            }
        }
    
        @Override
        public void setValue(final Object target, final Object value) {
            assertArgumentNotNull("target", target);
    
            try {
                final Object convertedValue = convertIfNeed(value);
                assertState(writable, propertyName + " is not writable.");
                if (hasWriteMethod()) {
                    try {
    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/beans/util/CopyOptions.java

        /**
         * 値がコピーの対象なら{@literal true}を返します。
         *
         * @param value
         *            コピー元の値
         * @return 値がコピーの対象なら{@literal true}
         */
        protected boolean isTargetValue(final Object value) {
            if (value == null) {
                return !excludesNull;
            }
            if (value instanceof String && excludesWhitespace && ((String) value).trim().isEmpty()) {
                return !excludesWhitespace;
            }
    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)
  3. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

        public int getPropertyDescSize() {
            return propertyDescCache.size();
        }
    
        @Override
        public Iterable<PropertyDesc> getPropertyDescs() {
            return unmodifiableCollection(propertyDescCache.values());
        }
    
        @Override
        public boolean hasFieldDesc(final String fieldName) {
            assertArgumentNotEmpty("fieldName", fieldName);
    
            return fieldDescCache.containsKey(fieldName);
        }
    
    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)
  4. src/main/java/org/codelibs/core/lang/FieldUtil.java

         *
         * @param field
         *            フィールド。{@literal null}であってはいけません
         * @param value
         *            {@literal static}フィールドの新しい値
         * @throws IllegalAccessRuntimeException
         *             基本となるフィールドにアクセスできない場合
         * @see Field#set(Object, Object)
         */
        public static void set(final Field field, final Object value) throws IllegalAccessRuntimeException {
            assertArgumentNotNull("field", field);
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/collection/ArrayMap.java

            public V getValue() {
                return value;
            }
    
            @Override
            public V setValue(final V value) {
                final V oldValue = value;
                this.value = value;
                return oldValue;
            }
    
            /**
             * 状態をクリアします。
             */
            public void clear() {
                key = null;
                value = null;
                next = null;
            }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 20.6K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/core/collection/ArrayUtil.java

         * @param value
         *            値
         * @return 配列に値が含まれていれば{@literal true}
         */
        public static boolean contains(final byte[] array, final byte value) {
            return indexOf(array, value) > -1;
        }
    
        /**
         * 配列に値が含まれていれば{@literal true}を返します。
         *
         * @param array
         *            配列
         * @param value
         *            値
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 42.6K bytes
    - Viewed (0)
Back to top