package week14day2;

public class Orange implements Fruit, Comparable<Fruit>{
	private static final int juciness = 8;
	@Override
	public int compareTo(Fruit o) {
		return -1; //oranges think they're always more juicy
	}

	@Override
	public int getJuiciness() {
		return juciness;
	}

}

