Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for twoWords (0.13 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

            }
            return toWords(string, '_').toUpperCase(Locale.ROOT);
        }
    
        /**
         * Converts an arbitrary string to space-separated words. Eg, camelCase -> camel case, with_underscores -> with underscores
         */
        public static String toWords(CharSequence string) {
            return toWords(string, ' ');
        }
    
        public static String toWords(CharSequence string, char separator) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

            if (string == null) {
                return null;
            }
            return toWords(string, '_').toUpperCase();
        }
    
        /**
         * Converts an arbitrary string to space-separated words. Eg, camelCase -> camel case, with_underscores -> with underscores
         */
        public static String toWords(CharSequence string) {
            return toWords(string, ' ');
        }
    
        @SuppressWarnings("StringCaseLocaleUsage")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

            T match = findEnumValue(enumType, literal);
            if (match != null) {
                return match;
            }
    
            final String alternativeLiteral = toWords(literal, '_');
            match = findEnumValue(enumType, alternativeLiteral);
            if (match != null) {
                return match;
            }
    
            String sep = "";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
Back to top