mirror of
https://github.com/Jueee/effective-Java.git
synced 2026-08-22 09:53:31 +08:00
14 lines
360 B
Java
14 lines
360 B
Java
package com.jueee.item34;
|
|
|
|
public class Item34Example01 {
|
|
|
|
public static final int APPLE_FUJI = 0;
|
|
public static final int APPLE_PIPPIN = 1;
|
|
public static final int APPLE_GRANNY_SMITH = 2;
|
|
|
|
public static final int ORANGE_NAVEL = 0;
|
|
public static final int ORANGE_TEMPLE = 1;
|
|
public static final int ORANGE_BLOOD = 2;
|
|
|
|
}
|