Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getPattern (0.16 sec)

  1. src/main/java/org/codelibs/core/message/MessageFormatter.java

         *            引数
         * @return メッセージコードなしの単純なメッセージ
         */
        public static String getSimpleMessage(final String messageCode, final Object... args) {
            try {
                final String pattern = getPattern(messageCode);
                if (pattern != null) {
                    return MessageFormat.format(pattern, args);
                }
                return getNoPatternMessage(args);
            } catch (final Throwable ignore) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  2. okhttp/api/okhttp.api

    	public fun <init> (Ljava/lang/String;Ljava/lang/String;)V
    	public fun equals (Ljava/lang/Object;)Z
    	public final fun getHash ()Lokio/ByteString;
    	public final fun getHashAlgorithm ()Ljava/lang/String;
    	public final fun getPattern ()Ljava/lang/String;
    	public fun hashCode ()I
    	public final fun matchesCertificate (Ljava/security/cert/X509Certificate;)Z
    	public final fun matchesHostname (Ljava/lang/String;)Z
    	public fun toString ()Ljava/lang/String;
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 15 13:41:01 GMT 2024
    - 70.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/IncludesArtifactFilter.java

                if (id.equals(i.next())) {
                    matched = true;
                }
            }
            return matched;
        }
    
        public List<String> getPatterns() {
            return new ArrayList<>(patterns);
        }
    
        @Override
        public int hashCode() {
            int hash = 17;
            hash = hash * 31 + patterns.hashCode();
    
            return hash;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.4K bytes
    - Viewed (0)
Back to top