Objects
자바 객체에 대한 다양한 메서드를 제공하는 클래스
reqiureNonNull
public static <T> T requireNonNull(T obj) {
if (obj == null)
throw new NullPointerException();
return obj;
}isNull / nonNull
equals
Last updated