Effective Java Reloaded (Google I/O Session Videos and Slides)
public enum Ensemble {
SOLO(1), DUET(2), TRIO(3), QUARTET(4), QUINTET(5),
SEXTET(6), SEPTET(7), OCTET(8), DOUBLE_QUARTET(8),
NONET(9), DECTET(10), TRIPLE_QUARTET(12);
private final int numberOfMusicians;
Ensemble(int size) {
numberOfMusicians = size;
}
public int numberOfMusicians() {
return numberOfMusicians;
}
}
13 June 2008
06 June 2008
Media: Kordia says hooray to Hollywood - 06 Jun 2008 - NZ Herald: Technology News, views and comment from New Zealand and the World
I'm quite disappointed. I've been waiting with an ethernet socket next to our TV, eager to try a revolutionary all-in-one freeview+IPTV set-top-box.
That's not going to happen any time soon.
Media: Kordia says hooray to Hollywood - 06 Jun 2008 - NZ Herald: Technology News, views and comment from New Zealand and the World
That's not going to happen any time soon.
Media: Kordia says hooray to Hollywood - 06 Jun 2008 - NZ Herald: Technology News, views and comment from New Zealand and the World
Subscribe to:
Posts (Atom)