로딩
요청 처리 중입니다...

[자바] java const enum

 [자바] java const enum

style 1 public enum ProcessResult { OK(0, "ok"), NOT_FOUND_USER(1, "not found user"), ; ProcessResult(int code, String message) { this.CODE = code; this.MESSAGE = message; } public int CODE; public String MESSAGE; } import com.example.dto.ProcessResult; import org.junit.jupiter.api.Test; class ProcessResultTests { @Test void test1() { ProcessResult processResult = ProcessResult.OK; if (processResult.CODE == ProcessResult.OK.CODE) { System.out.println("1: " + processResult.MESSAGE); } if (process...