// returns the list sorted to be in alphabetical/numerical order.
// EG, a list of "b|c|a10|a1" will return "a1|a10|b|c".
// -->
if (attribute.startsWith("alphanumeric")) {
dList list = new dList(this);
Collections.sort(list, new NaturalOrderComparator());
return list.getAttribute(attribute.fulfill(1));
}
// <--[tag]
// @attribute <li@list.alphabetical>