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

org.tbwork.anole.loader.util.OsUtil Maven / Gradle / Ivy

The newest version!
package org.tbwork.anole.loader.util;

import org.tbwork.anole.loader.enums.OsCategory;

public class OsUtil {

	public static OsCategory getOsCategory(){
		String os = System.getProperty("os.name");  
		if(os.toLowerCase().startsWith("win")){  
		    return OsCategory.WINDOWS;
		}  
		else if(os.toLowerCase().startsWith("mac")){
			return OsCategory.MAC;
		}
		else{ // linux
			return OsCategory.LINUX;
		} 
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy