commit
c2cea81958
@ -1,9 +1,28 @@
|
||||
package utils;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
public interface Utils {
|
||||
public static String toUpperFristChar(String string) {
|
||||
public static Map<String,Integer> userAttrNum =new HashMap<>()
|
||||
|
||||
{
|
||||
{
|
||||
userAttrNum.put("administrator",5);
|
||||
userAttrNum.put("student",7);
|
||||
userAttrNum.put("teacher",8);
|
||||
}
|
||||
};
|
||||
public static String toUpperFirstChar(String string) {
|
||||
char[] charArray = string.toCharArray();
|
||||
charArray[0] -= 32;
|
||||
return String.valueOf(charArray);
|
||||
}
|
||||
public static List<String> formatUserInfo(String userType, List<String> userInfo){
|
||||
for(int i=0;i<userAttrNum.get(userType)-userInfo.size();i++){
|
||||
userInfo.add("");
|
||||
}
|
||||
return userInfo;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in new issue