3c859caf2b
Move j2k/test/tests -> j2k/tests, j2k/test/testData -> j2k/testData
9 lines
185 B
Java
Vendored
9 lines
185 B
Java
Vendored
//class
|
|
enum Color implements Runnable {
|
|
WHITE, BLACK, RED, YELLOW, BLUE;
|
|
|
|
public void run() {
|
|
System.out.println("name()=" + name() +
|
|
", toString()=" + toString());
|
|
}
|
|
} |