T - public interface DomValueParser<T>
| Modifier and Type | Method and Description |
|---|---|
java.lang.Class<T> |
getType()
Returns the
Class of object this parser returns with it's
parse(Node) method is invoked. |
T |
parse(org.w3c.dom.Node valueNode)
Parses the specified Node and constructs the appropriate object out of
it.
|
java.lang.Class<T> getType()
Class of object this parser returns with it's
parse(Node) method is invoked. The returned class will be the
exact Class (i.e. not a subclass) of this
ValueParser's typeDomValueParserT parse(org.w3c.dom.Node valueNode) throws ValueParseException
ValueParseExceptionvalueNode - Node to parsevalueNode