Java
25_생성자 예제
우오우어아오앙
2016. 9. 23. 11:35
728x90
SMALL
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
반응형
LIST