Package com.adyen.model.balanceplatform
Class JSONPath
- java.lang.Object
-
- com.adyen.model.balanceplatform.JSONPath
-
public class JSONPath extends Object
JSONPath
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_CONTENT
-
Constructor Summary
Constructors Constructor Description JSONPath()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description JSONPathaddContentItem(String contentItem)JSONPathcontent(List<String> content)booleanequals(Object o)Return true if this JSONPath object is equal to o.static JSONPathfromJson(String jsonString)Create an instance of JSONPath given an JSON stringList<String>getContent()Get contentinthashCode()voidsetContent(List<String> content)StringtoJson()Convert an instance of JSONPath to an JSON stringStringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_CONTENT
public static final String JSON_PROPERTY_CONTENT
- See Also:
- Constant Field Values
-
-
Method Detail
-
equals
public boolean equals(Object o)
Return true if this JSONPath object is equal to o.
-
fromJson
public static JSONPath fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of JSONPath given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of JSONPath
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to JSONPath
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of JSONPath to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-