format = enumFormat;
} catch(ClassNotFoundException e) {
throw new TableEngineException("could get attribute 'class'", e);
}
} else if("string".equals(attributeNode.getNodeValue())) {
StringFormatter stringFormat = new StringFormatter();
NodeList nodes = node.getChildNodes();
for(int j=0; j<nodes.getLength(); j++) {
if(nodes.item(j).getNodeType() == Node.ELEMENT_NODE) {
if("value".equals(nodes.item(j).getNodeName())) {
parseValue(stringFormat, nodes.item(j));