private Thing getParentFromPreposition(CSVEntry csvEntry) { if ("text".equals(csvEntry.getNature())) { return new Entity("text"); } else { return new Entity(classesEntity, "ideograph", Collections.emptyList()); } }
private boolean descriptionNeedsSpecialHandling(CSVEntry nature) { return "text".equals(nature.getNature()) || nature.getDescription().contains("ideograph"); }