我正在使用 JSON。所以我有以下 POJO 类Position,Person. 当Person我需要的类。
我只需要接收字段的格式化值Person(我只使用这个类,Position它是我的 JSON 结构的类)
在哪里更好地在Positionor 中实现格式化逻辑Person?
第一个变体,格式化逻辑 Position class
public Position {
private String value;
public String getFormattedValue() {
//Value formatting...
return value;
}
public Person {
private Position position;
..other fields
public String getFormattedValue() {
return position.getFormattedValue();
}
}
//using
String neededFormattedValue = new Person().getFormattedValue();
第二个变体,格式化逻辑 Person class
public Position {
private String value;
public String getValue() {
return value;
}
public Person {
private Position position;
..other fields
public String getFormattedValue() {
String value = position.getValue()
//Value formatting...
return value;
}
}
//using
String neededFormattedValue = new Person().getFormattedValue();
ABOUTYOU
呼啦一阵风
相关分类