- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
public class SomePoint<T> implements IsPoint<T> {
// some code...
protected Object getValue(Object object) {
IsPoint<?> point = (IsPoint<?>) this;
Object obj = point == null ? null : point.getNonSafe((Enum<?>) object);
return obj == null ? new Double(0) : obj;
}
// some code
}
Комментарии (7) RSS
Добавить комментарий