java.lang.Object
jakarta.json.bind.config.BinaryDataStrategy
Specifies predefined binary data handling strategies.
 This strategy can be set via 
JsonbConfig.withBinaryDataStrategy(String).- Since:
- JSON Binding 1.0
- See Also:
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final StringUsing this strategy, binary data is encoded using the Base64 encoding scheme as specified in RFC 4648 and RFC 2045.static final StringUsing this strategy, binary data is encoded using the "URL and Filename safe Base64 Alphabet" as specified in Table 2 of RFC 4648.static final StringUsing this strategy, binary data is encoded as a byte array.
- 
Method Summary
- 
Field Details- 
BYTEUsing this strategy, binary data is encoded as a byte array. Default encoding strategy.- See Also:
 
- 
BASE_64Using this strategy, binary data is encoded using the Base64 encoding scheme as specified in RFC 4648 and RFC 2045.- See Also:
 
- 
BASE_64_URLUsing this strategy, binary data is encoded using the "URL and Filename safe Base64 Alphabet" as specified in Table 2 of RFC 4648.- See Also:
 
 
-