Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Konversion (0.07 sec)

  1. README.md

    ## ✨ Features
    
    ### Core Utilities
    - **Bean Manipulation** (`org.codelibs.core.beans`) - JavaBeans metadata handling, property access, and object conversion with comprehensive `BeanDesc` system
    - **Type Conversion** (`org.codelibs.core.convert`) - Comprehensive utilities for converting between Java types with null-safe operations and support for all primitive types
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

        }
    
        // Test numeric conversions
        public void test_numericConversions() {
            // Test integer conversion
            Integer heartbeatInterval = fessConfig.getSearchEngineHeartbeatIntervalAsInteger();
            assertNotNull(heartbeatInterval);
            assertEquals(10000, heartbeatInterval.intValue());
    
            // Test integer conversion for cleanup days
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/DocumentUtil.java

        }
    
        /**
         * Converts an object to the specified type.
         * Supports conversion to String, Date, Long, Integer, Double, Float, and Boolean types.
         *
         * @param <T> the type to convert the value to
         * @param value the value to convert
         * @param clazz the target class type
         * @return the converted value or null if conversion is not supported
         */
        @SuppressWarnings("unchecked")
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LongAdder.java

      @Override
      public int intValue() {
        return (int) sum();
      }
    
      /** Returns the {@link #sum} as a {@code float} after a widening primitive conversion. */
      @Override
      public float floatValue() {
        return (float) sum();
      }
    
      /** Returns the {@link #sum} as a {@code double} after a widening primitive conversion. */
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/UnsignedInteger.java

       * primitive conversion from {@code int} to {@code float}, and correctly rounded.
       */
      @Override
      public float floatValue() {
        return longValue();
      }
    
      /**
       * Returns the value of this {@code UnsignedInteger} as a {@code double}, analogous to a widening
       * primitive conversion from {@code int} to {@code double}, and correctly rounded.
       */
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

            assertEquals("value1", testParams.get("key1"));
        }
    
        // Test case conversion through ParamMap (camelCase to snake_case)
        public void test_caseConversion() {
            dataStoreParams.put("camelCaseKey", "value1");
            // ParamMap should handle case conversion
            assertNotNull(dataStoreParams.get("camelCaseKey"));
    
            dataStoreParams.put("snake_case_key", "value2");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/NullnessCasts.java

    @GwtCompatible
    final class NullnessCasts {
      /**
       * Accepts a {@code @Nullable T} and returns a plain {@code T}, without performing any check that
       * that conversion is safe.
       *
       * <p>This method is intended to help with usages of type parameters that have {@linkplain
       * ParametricNullness parametric nullness}. If a type parameter instead ranges over only non-null
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 13 20:49:47 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/query/WildcardQueryCommandTest.java

            // Query was processed successfully
        }
    
        public void test_convertWildcardQuery_caseInsensitive() throws Exception {
            // Test lowercase conversion with wildcard enabled (default)
            QueryContext queryContext1 = new QueryContext("TEST*", false);
            WildcardQuery wildcardQuery1 = new WildcardQuery(new Term("title", "TEST*"));
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/SearchForm.java

    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.web.util.LaRequestUtil;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    import jakarta.validation.constraints.Size;
    
    /**
     * Base search form class that extends SearchRequestParams.
     * Provides form fields and methods for handling search requests in the web interface.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/NullnessCasts.java

    @GwtCompatible
    final class NullnessCasts {
      /**
       * Accepts a {@code @Nullable T} and returns a plain {@code T}, without performing any check that
       * that conversion is safe.
       *
       * <p>This method is intended to help with usages of type parameters that have {@linkplain
       * ParametricNullness parametric nullness}. If a type parameter instead ranges over only non-null
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 13 20:49:47 UTC 2025
    - 4K bytes
    - Viewed (0)
Back to top