- 01
 - 02
 - 03
 - 04
 - 05
 - 06
 - 07
 - 08
 - 09
 - 10
 - 11
 - 12
 - 13
 - 14
 
//говнокод из ЮАР)
    public static boolean isValid(Object object){
        if(object == null){
            return false;
        }
        try{
            List l = (List)object;
            return !l.isEmpty();
        }
        catch (ClassCastException ex){
            String string = object.toString();
            return !(("").equals(string.trim()));
        }
    }
                                
 Follow us!
Комментарии (2) RSS
Добавить комментарий