Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for interfaces (0.18 sec)

  1. src/main/java/org/codelibs/core/lang/GenericsUtil.java

                gatherTypeVariables(superClass, superClassType, map);
            }
    
            final Class<?>[] interfaces = clazz.getInterfaces();
            final Type[] interfaceTypes = clazz.getGenericInterfaces();
            for (int i = 0; i < interfaces.length; ++i) {
                gatherTypeVariables(interfaces[i], interfaceTypes[i], map);
            }
    
            return map;
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/timer/TimeoutTarget.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.timer;
    
    /**
     * タイムアウトを処理するインターフェースです。
     *
     * @author higa
     *
     */
    @FunctionalInterface
    public interface TimeoutTarget {
    
        /**
         * タイムアウトの処理を記述します。
         */
        void expired();
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 904 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/log/LoggerAdapter.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.log;
    
    /**
     * 任意のロギングフレームワークを利用するためのアダプタです。
     *
     * @author koichik
     */
    interface LoggerAdapter {
    
        boolean isFatalEnabled();
    
        void fatal(String message);
    
        void fatal(String message, Throwable t);
    
        boolean isErrorEnabled();
    
        void error(String message);
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/Converter.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.beans;
    
    /**
     * 文字列とオブジェクトの変換を行なうインターフェースです。
     *
     * @author higa
     */
    public interface Converter {
    
        /**
         * 値を文字列として返します。
         *
         * @param value
         *            値
         * @return 文字列としての値
         */
        String getAsString(Object value);
    
        /**
         * 値をオブジェクトとして返します。
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/ParameterizedClassDesc.java

     */
    package org.codelibs.core.beans;
    
    import java.lang.reflect.ParameterizedType;
    
    /**
     * パラメタ化されたクラスを扱うためのインターフェースです。
     *
     * @author koichik
     */
    public interface ParameterizedClassDesc {
    
        /**
         * このインスタンスが表現するクラスがパラメタ化されていれば<code>true</code>を返します。
         *
         * @return このインスタンスが表現するクラスがパラメタ化されていれば<code>true</code>
         */
        boolean isParameterizedClass();
    
    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)
  6. src/main/java/org/codelibs/fess/query/QueryCommand.java

            if (Constants.DEFAULT_FIELD.equals(field) && defaultField != null) {
                return defaultField;
            }
            return field;
        }
    
        protected interface DefaultQueryBuilderFunction {
            QueryBuilder apply(String field, float boost);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractEntity.java

                return this;
            }
    
            public RequestOptionCall<DeleteRequestBuilder> deleteOption() {
                return deleteOption;
            }
        }
    
        @FunctionalInterface
        public interface RequestOptionCall<OP> {
            void callback(OP op);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            this.addressCache.put(this.unknownName, new CacheEntry(this.unknownName, this.unknownAddress, SmbConstants.FOREVER));
    
            /*
             * Determine the InetAddress of the local interface
             * if one was not specified.
             */
            InetAddress localInetAddress = tc.getConfig().getNetbiosLocalAddress();
            if ( localInetAddress == null ) {
                try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

    package org.codelibs.fess.mylasta.direction;
    
    import org.lastaflute.core.direction.ObjectiveConfig;
    import org.lastaflute.core.direction.exception.ConfigPropertyNotFoundException;
    
    /**
     * @author FreeGen
     */
    public interface FessEnv {
    
        /** The key of the configuration. e.g. warm */
        String lasta_di_SMART_DEPLOY_MODE = "lasta_di.smart.deploy.mode";
    
        /** The key of the configuration. e.g. true */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            } catch (final NamingException e) {
                throw new LdapOperationException("Failed to search " + dn, e);
            }
        }
    
        interface SearchConsumer {
            void accept(List<SearchResult> t) throws NamingException;
        }
    
        protected DirContextHolder getDirContext(final Supplier<Hashtable<String, String>> envSupplier) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
Back to top