
public class Near {
	float value;

	Near(float value) { 
		this.value = value; 
	}
	private float getValue() { 
		return value; 
	}
	public float getValueNear() { 
		return getValue(); 
	}
}

