728x90
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;
}
};
728x90
반응형
'Java' 카테고리의 다른 글
28_문자열 변환 프로그램 (0) | 2016.09.26 |
---|---|
27_Scanner (0) | 2016.09.26 |
24_변수 (0) | 2016.09.20 |
23_HashMap (0) | 2016.09.07 |
18_Eclipce 자주쓰는 단축키 (0) | 2016.08.30 |