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

graphql.scalar.CoercingUtil Maven / Gradle / Ivy

There is a newer version: 230521-nf-execution
Show newest version
package graphql.scalar;

import graphql.Internal;
import graphql.i18n.I18n;

import java.util.Locale;

@Internal
public class CoercingUtil {
    public static boolean isNumberIsh(Object input) {
        return input instanceof Number || input instanceof String;
    }

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

        return input.getClass().getSimpleName();
    }

    public static String i18nMsg(Locale locale, String msgKey, Object... args) {
        return I18n.i18n(I18n.BundleType.Scalars, locale).msg(msgKey, args);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy