17 id = row.getString(
"id");
18 category = row.getString(
"category");
19 frequency = (float) row.optDouble(
"frequency", 0);
21 String tags = row.optString(
"tags",
null);
23 String [] split = tags.split(
",");
24 for (String tag : split) {
26 if (tag.isEmpty())
continue;