Java tutorial
//package com.java2s; //License from project: Apache License public class Main { private static String cleanNetworkTypeName(String type) { /* if (AVUtils.isBlankString(type)) { return "offline"; }*/ String t = type.toUpperCase(); if (t.contains("WIFI")) { return "WiFi"; } if (type.contains("MOBILE")) { return "Mobile"; } return type; } }