OnJava8-Examples/enumerated/RoShamBo3.java

46 lines
1.0 KiB
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: enumerated/RoShamBo3.java
// Using constant-specific methods.
package enumerated;
import static enumerated.Outcome.*;
public enum RoShamBo3 implements Competitor<RoShamBo3> {
PAPER {
2015-05-05 11:20:13 -07:00
@Override
2015-04-20 15:36:01 -07:00
public Outcome compete(RoShamBo3 it) {
switch(it) {
default: // To placate the compiler
case PAPER: return DRAW;
case SCISSORS: return LOSE;
case ROCK: return WIN;
}
}
},
SCISSORS {
2015-05-05 11:20:13 -07:00
@Override
2015-04-20 15:36:01 -07:00
public Outcome compete(RoShamBo3 it) {
switch(it) {
default:
case PAPER: return WIN;
case SCISSORS: return DRAW;
case ROCK: return LOSE;
}
}
},
ROCK {
2015-05-05 11:20:13 -07:00
@Override
2015-04-20 15:36:01 -07:00
public Outcome compete(RoShamBo3 it) {
switch(it) {
default:
case PAPER: return LOSE;
case SCISSORS: return WIN;
case ROCK: return DRAW;
}
}
};
2015-05-05 11:20:13 -07:00
@Override
2015-04-20 15:36:01 -07:00
public abstract Outcome compete(RoShamBo3 it);
public static void main(String[] args) {
RoShamBo.play(RoShamBo3.class, 20);
}
} /* Same output as RoShamBo2.java *///:~