All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eg.google.gson.internal.GsonPreconditions Maven / Gradle / Ivy

The newest version!
 package com.eg.google.gson.internal;
 public final class GsonPreconditions
 {
   public static  T checkNotNull(T obj) {
       if (obj == null) {

           throw new NullPointerException();
       }
       return obj;
   }

   public static void checkArgument(boolean condition) {
       if (!condition) {
           throw new IllegalArgumentException();
       }
   }
 }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy