isEmpty는 객체 = null 일 때는 false 객체 = "" 일 때는 true
객체 = "" 일때는 false, 객체 = null 일 때는 true
이기 때문에
null값 예외처리를 해주고싶다면 null == 객체 || 객체.isEmpty 를 써주는게 맞다.