MCPcopy Create free account
hub / github.com/baumgarr/nixnote2 / decodeToObject

Method decodeToObject

java/src/cx/fbn/encrypt/Base64.java:1301–1304  ·  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

1299 * @since 1.5
1300 */
1301 public static Object decodeToObject( String encodedObject )
1302 throws java.io.IOException, java.lang.ClassNotFoundException {
1303 return decodeToObject(encodedObject,NO_OPTIONS,null);
1304 }
1305
1306
1307 /**

Callers

nothing calls this directly

Calls 2

decodeMethod · 0.95
closeMethod · 0.45

Tested by

no test coverage detected