Write a Comparator
that orders a pair of JSON objects based on their respective name
attributes. Then use that to sort your array of JSON objects; e.g. using Arrays.sort(objects, comparator)
.
Here is a (more general) example:
You can modify that code to replace the OffersOrder
class with your JSON object type (or a custom class) and then implement the comparator to compare objects and return the appropriate value.