- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
@Nullable
public static BigDecimal getWidth(final ITagSpecification spec, final TagSize size) {
switch (size) {
case S:
return spec.getSmallWidth();
case M:
return spec.getMediumWidth();
case L:
return spec.getLargeWidth();
default:
throw new AssertionError();
}
}
@Nullable
public static BigDecimal getHeight(final ITagSpecification spec, final TagSize size) {
switch (size) {
case S:
return spec.getSmallHeight();
case M:
return spec.getMediumHeight();
case L:
return spec.getLargeHeight();
default:
throw new AssertionError();
}
}
public static BigDecimal getDiameter(final ITagSpecification spec, final TagSize size) {
switch (size) {
case S:
return spec.getSmallDiameter();
case M:
return spec.getMediumDiameter();
case L:
return spec.getLargeDiameter();
default:
throw new AssertionError();
}
}
@Nullable
public static BigDecimal getWeight(final ITagSpecification spec, final TagSize size) {
switch (size) {
case S:
return spec.getSmallWeight();
case M:
return spec.getMediumWeight();
case L:
return spec.getLargeWeight();
default:
throw new AssertionError();
}
}
Бойлерплейт - он такой. А можно ли с JPA это как-то изящнее сделать? Дело в том, что {small|medium|large}{Width|Height|Diamet er|Weight} - это двенадцать столбцов таблицы в БД. Пока единственное, что приходит на ум - это сделать три одинаковых @Embedded'а на каждый размер.
wvxvw 19.10.2014 19:11 # 0
3.14159265 19.10.2014 19:26 # +1
>ITagSpecification
Если тут по три метода захардкожено, то сушите весла, только рефлексия.
Должно либо три инстанса быть ITagSpecification, либо в каждом методе параметр TagSize.
anonimb84a2f6fd141 19.10.2014 20:05 # −10
Знаете, кто такой этот конардо?
anonimb84a2f6fd141 19.10.2014 20:45 # −9
bormand 20.10.2014 07:20 # +2
> двенадцать столбцов таблицы в БД
Добавить колонку size (со значениями 'L', 'M' или 'S') и разбить запись на 3 отдельных?
Lure Of Chaos 21.10.2014 14:16 # 0