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

com.apollographql.android.gradle.Utils Maven / Gradle / Ivy

There is a newer version: 0.2.2
Show newest version
package com.apollographql.android.gradle;

public class Utils {
  public static String capitalize(String s) {
    return s.substring(0, 1).toUpperCase() + s.substring(1);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy