|
Groovy JDK | |||||||||
| Method Summary | |
|---|---|
void
|
eachByte(Closure closure)
Traverse through each byte of this Byte array |
Writable
|
encodeBase64(boolean chunked)
Produce a Writable object which writes the Base64 encoding of the byte array Calling toString() on the result returns the encoding as a String information on Base64 encoding and chunking see RFC 4648
|
Writable
|
encodeBase64()
Produce a Writable object which writes the Base64 encoding of the byte array Calling toString() on the result returns the encoding as a String information on Base64 encoding and chunking see RFC 4648
|
| Method Detail |
|---|
public void eachByte(Closure closure)
closure - a closure.
public Writable encodeBase64(boolean chunked)
RFC 4648.
chunked - whether or not the Base64 encoded data should be MIME chunked.
public Writable encodeBase64()
RFC 4648.
|
Groovy JDK | |||||||||