Package com.x2j.converter.mgr.handlers
Interface X2JStringHandler
- All Known Implementing Classes:
ConcatHandler,DefaultHandler,LengthHandler,LowerCaseHandler,SubStringHandler,UpperCaseHandler,ValueHandler,XPathHandler
public interface X2JStringHandler
The interface X2JStringHandler.
-
Method Summary
Modifier and TypeMethodDescriptionhandleString(String rawValueString, Element rootElement) Every String handler will have to implement this method for processing the JSON value as per the definition given in the schema.
-
Method Details
-
handleString
Every String handler will have to implement this method for processing the JSON value as per the definition given in the schema.- Parameters:
rawValueString- the raw JSON value stringrootElement- the root element of the input XML- Returns:
- the string post the processing is done by the handler
- Throws:
X2JException- X2JException
-