====== @SuppressWarning ======
* description :
* author : 도봉산핵주먹
* email : hylee@repia.com
* lastupdate : 2020-06-01
===== @SuppressWarning =====
==== @SuppressWarning?? ====
* 노란색 줄이 그거져있는 소스 위에 마우스를 가져다 대면 @SuppressWarning가 뜹니다.
* @SuppressWarning 는 컴파일러가 일반적으로 경고하는 내용 중 "이건하지마"하고 제외시킬 때 쓰는겁니다.
==== @SuppressWarning(옵션) ====
* all : 모든 경고를 억제
* cast : 캐스트 연산자 관련 경고 억제
* dep-ann : 사용하지 말아야 할 주석 관련 경고 억제
* deprecation : 사용하지 말아야 할 메소드 관련 경고 억제
* fallthrough : switch문에서의 break 누락 관련 경고 억제
* finally : 반환하지 않는 finally 블럭 관련 경고 억제
* null : null 분석 관련 경고 억제
* rawtypes : 제네릭을 사용하는 클래스 매개 변수가 불특정일 때의 경고 억제
* unchecked : 검증되지 않은 연산자 관련 경고 억제
* unused : 사용하지 않는 코드 관련 경고 억제
===== Ref =====
* [[https://jinwoonote.tistory.com/entry/SuppressWarnings-이건-뭐지|@SuppressWarnings 이건 뭐지~?]]
{{tag>도봉산핵주먹 @SuppressWarning 어노테이션 annotation 노란줄 eclipse}}