Package jakarta.json.bind.config
Class PropertyOrderStrategy
java.lang.Object
jakarta.json.bind.config.PropertyOrderStrategy
Specifies predefined property order strategies.
This strategy can be set via
JsonbConfig.withPropertyOrderStrategy(String)
- Since:
- JSON Binding 1.0
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Using this strategy, the order of properties is not guaranteed to retain any order.static final String
Using this strategy, the order of properties is lexicographical.static final String
Using this strategy, the order of properties is in reverse order to lexicographical order. -
Method Summary
-
Field Details
-
LEXICOGRAPHICAL
Using this strategy, the order of properties is lexicographical.- See Also:
-
ANY
Using this strategy, the order of properties is not guaranteed to retain any order.- See Also:
-
REVERSE
Using this strategy, the order of properties is in reverse order to lexicographical order.- See Also:
-