Here you can find the source of toLowerCaseSubsystemType(String s)
public static String toLowerCaseSubsystemType(String s)
//package com.java2s; // it under the terms of the GNU General Public License as published by public class Main { public static String toLowerCaseSubsystemType(String s) { if (s == null) { return null; }/*from w w w . j a v a 2s . c om*/ if (s.equalsIgnoreCase("CA")) { return "ca"; } else if (s.equalsIgnoreCase("KRA")) { return "kra"; } else if (s.equalsIgnoreCase("OCSP")) { return "ocsp"; } else if (s.equalsIgnoreCase("TKS")) { return "tks"; } else if (s.equalsIgnoreCase("TPS")) { return "tps"; } return null; } }