graphql.scalars.util.Kit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-java-extended-scalars Show documentation
Show all versions of graphql-java-extended-scalars Show documentation
A library fo extended scalars for graphql-java
package graphql.scalars.util;
public class Kit {
public static String typeName(Object input) {
if (input == null) {
return "null";
}
return input.getClass().getSimpleName();
}
}