Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for stringValueOf (0.6 sec)

  1. 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
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 10 22:11:00 UTC 2025
    - 53K bytes
    - Viewed (0)
Back to top