14 lines
457 B
Java
14 lines
457 B
Java
// interfaces/Months.java
|
|
// (c)2016 MindView LLC: see Copyright.txt
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
|
|
// Using interfaces to create groups of constants.
|
|
|
|
public interface Months {
|
|
int
|
|
JANUARY = 1, FEBRUARY = 2, MARCH = 3,
|
|
APRIL = 4, MAY = 5, JUNE = 6, JULY = 7,
|
|
AUGUST = 8, SEPTEMBER = 9, OCTOBER = 10,
|
|
NOVEMBER = 11, DECEMBER = 12;
|
|
}
|