public interface PoiCategory
PointOfInterest
. Every PoiCategory
should
have a unique title so that for two PoiCategory
s a and b a.equals(b) if and only if
a.title.equalsIgnoreCase(b.title).Modifier and Type | Method and Description |
---|---|
java.util.Collection<PoiCategory> |
deepChildren() |
java.util.Collection<PoiCategory> |
getChildren() |
int |
getID() |
PoiCategory |
getParent() |
java.lang.String |
getTitle() |
void |
setParent(PoiCategory parent)
Sets the category's parent category.
|
java.util.Collection<PoiCategory> deepChildren()
java.util.Collection<PoiCategory> getChildren()
int getID()
PoiCategory getParent()
java.lang.String getTitle()
void setParent(PoiCategory parent)
parent
- The category to be set as parent.