Ejemplo n.º 1
0
  public static MappedValue createMappedValue(ResultSet rs) throws SQLException {
    int col = 1;
    MappedValue val = new MappedValue();
    val.setId(rs.getInt(col++));
    val.setDesc(rs.getString(col++));
    val.setValue(rs.getInt(col++));

    return val;
  }
Ejemplo n.º 2
0
  public static MappedValue createMappedValue(JSONObject jsonObj) throws JSONException {
    MappedValue val = new MappedValue();

    if (jsonObj.has("id")) {
      val.setId(jsonObj.getInt("id"));
    }

    if (jsonObj.has("value")) {
      val.setValue(jsonObj.getInt("value"));
    }

    if (jsonObj.has("desc")) {
      val.setDesc(jsonObj.getString("desc"));
    }

    return val;
  }
Ejemplo n.º 3
0
 public MappedValue() {
   setDesc("");
   setValue(-1);
   setId(-1);
 }