13 lines
270 B
Java
13 lines
270 B
Java
|
public enum RollersCount {
|
||
|
OneRoller(1),
|
||
|
TwoRollers(2),
|
||
|
ThreeRollers(3);
|
||
|
private int numOfRollers;
|
||
|
RollersCount(int numOfRollers){
|
||
|
this.numOfRollers = numOfRollers;
|
||
|
}
|
||
|
public int getNumOfRollers(){
|
||
|
return numOfRollers;
|
||
|
}
|
||
|
}
|