Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for fieldName (0.17 sec)

  1. 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)
  2. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            docMap.put(fieldName, urlLink);
            assertEquals(sitePath, viewHelper.getSitePath(docMap));
    
            urlLink = "http://www.qwerty.jp";
            sitePath = "www.qwerty.jp";
            docMap.put(fieldName, urlLink);
            assertEquals(sitePath, viewHelper.getSitePath(docMap));
    
            urlLink = "://www.qwerty.jp";
            sitePath = "www.qwerty.jp";
            docMap.put(fieldName, urlLink);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/main/java/org/codelibs/fess/helper/QueryHelper.java

        }
    
        public void addDefaultSort(final String fieldName, final String order) {
            final List<SortBuilder<?>> list = new ArrayList<>();
            if (defaultSortBuilders != null) {
                stream(defaultSortBuilders).of(stream -> stream.forEach(builder -> list.add(builder)));
            }
            list.add(createFieldSortBuilder(fieldName, SortOrder.DESC.toString().equalsIgnoreCase(order) ? SortOrder.DESC : SortOrder.ASC));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.9K bytes
    - Viewed (0)
  7. 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)
  8. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

        public boolean hasFieldDesc(final String fieldName) {
            assertArgumentNotEmpty("fieldName", fieldName);
    
            return fieldDescCache.containsKey(fieldName);
        }
    
        @Override
        public FieldDesc getFieldDesc(final String fieldName) {
            assertArgumentNotEmpty("fieldName", fieldName);
    
            final FieldDesc fieldDesc = fieldDescCache.get(fieldName);
            if (fieldDesc == null) {
    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)
  9. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

                        resultMap.put("index", index);
                        resultMap.put("id", termQueryBuilder.value().toString());
                        resultMap.put("field", termQueryBuilder.fieldName());
                        return 1;
                    }
                    return 0;
                }
            };
            ComponentUtil.register(client, "searchEngineClient");
    
            final String id = "001";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

            boolQueryBuilder
                    .must(QueryBuilders.rangeQuery(FieldNames.TIMESTAMP).lt(time.atZone(ZoneId.systemDefault()).toInstant().toEpochMilli()));
    
            boolQueryBuilder.must(QueryBuilders.termQuery(FieldNames.KINDS, SuggestItem.Kind.DOCUMENT.toString()));
            boolQueryBuilder.mustNot(QueryBuilders.termQuery(FieldNames.KINDS, SuggestItem.Kind.QUERY.toString()));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18K bytes
    - Viewed (0)
Back to top