25_생성자 예제
public enum CarSize{ SMALL_SIZED(1, CarConstants.SMALL_SIZED_CAR), LARGE_SIZED(2, CarConstants.LARGE_SIZED_CAR); private int id; private String type; CarSize(int carSize, String carType){ this.id = carSize; this.type = carType; } public int getID(){ return this.id; } public String getCarType(){ return this.type; } };