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

graphql.scalars.util.Kit Maven / Gradle / Ivy

There is a newer version: 2023-01-24T02-11-56-babda5f
Show newest version
package graphql.scalars.util;

public class Kit {

    public static String typeName(Object input) {
        if (input == null) {
            return "null";
        }
        return input.getClass().getSimpleName();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy