- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for stringValueOf (0.16 seconds)
-
guava-gwt/src-super/com/google/common/base/super/com/google/common/base/Platform.java
} static String lenientFormat(@Nullable String template, @Nullable Object @Nullable ... args) { return Strings.lenientFormat(template, args); } static String stringValueOf(@Nullable Object o) { return String.valueOf(o); } private Platform() {}
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 03 21:52:39 GMT 2025 - 2.2K bytes - Click Count (0) -
guava/src/com/google/common/base/Platform.java
} static String lenientFormat( @Nullable String template, @Nullable Object @Nullable ... args) { return Strings.lenientFormat(template, args); } static String stringValueOf(@Nullable Object o) { return String.valueOf(o); } static CommonPattern compilePattern(String pattern) { Preconditions.checkNotNull(pattern); return patternCompiler.compile(pattern); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Dec 29 17:36:00 GMT 2025 - 3.7K bytes - Click Count (0) -
android/guava/src/com/google/common/base/Platform.java
} static String lenientFormat( @Nullable String template, @Nullable Object @Nullable ... args) { return Strings.lenientFormat(template, args); } static String stringValueOf(@Nullable Object o) { return String.valueOf(o); } static CommonPattern compilePattern(String pattern) { Preconditions.checkNotNull(pattern); return patternCompiler.compile(pattern); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Dec 29 17:36:00 GMT 2025 - 4.1K bytes - Click Count (0) -
guava/src/com/google/common/base/Preconditions.java
*/ public static void checkArgument(boolean expression, @Nullable Object errorMessage) { if (!expression) { throw new IllegalArgumentException(Platform.stringValueOf(errorMessage)); } } /** * Ensures the truth of an expression involving one or more parameters to the calling method. * * @param expression a boolean expression
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 08 18:10:02 GMT 2026 - 53.5K bytes - Click Count (0) -
android/guava/src/com/google/common/base/Preconditions.java
*/ public static void checkArgument(boolean expression, @Nullable Object errorMessage) { if (!expression) { throw new IllegalArgumentException(Platform.stringValueOf(errorMessage)); } } /** * Ensures the truth of an expression involving one or more parameters to the calling method. * * @param expression a boolean expression
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 08 18:10:02 GMT 2026 - 53.5K bytes - Click Count (0)