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

io.apicurio.registry.utils.BooleanUtil Maven / Gradle / Ivy

There is a newer version: 3.0.4
Show newest version
package io.apicurio.registry.utils;

public class BooleanUtil {

    public static boolean toBoolean(Object parameter) {
        if (parameter == null) {
            return false;
        }
        if (parameter instanceof Boolean) {
            return (Boolean) parameter;
        }
        if (parameter instanceof String) {
            return Boolean.parseBoolean((String) parameter);
        }
        return false;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy