MCPcopy Create free account
hub / github.com/alecgorge/jsonapi / decodeToObject

Method decodeToObject

src/main/java/org/java_websocket/util/Base64.java:1314–1317  ·  view source on GitHub ↗

Attempts to decode Base64 data and deserialize a Java Object within. Returns null if there was an error. @param encodedObject The Base64 data to decode @return The decoded and deserialized object @throws NullPointerException if encodedObject is null @throws java.io.IOException if there is

( String encodedObject )

Source from the content-addressed store, hash-verified

1312 * @since 1.5
1313 */
1314 public static Object decodeToObject( String encodedObject )
1315 throws java.io.IOException, java.lang.ClassNotFoundException {
1316 return decodeToObject(encodedObject,NO_OPTIONS,null);
1317 }
1318
1319
1320 /**

Callers

nothing calls this directly

Calls 2

decodeMethod · 0.95
closeMethod · 0.65

Tested by

no test coverage detected