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

com.redhat.ceylon.common.MiscUtil Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package com.redhat.ceylon.common;

public class MiscUtil {

    private MiscUtil() {
    }

    public static int compare(String str1, String str2) {
        if (str1 == null && str2 == null) {
            return 0;
        }
        if (str1 == null) {
            return -1;
        }
        if (str2 == null) {
            return 1;
        }
        return str1.compareTo(str2);
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy