MCPcopy Index your code
hub / github.com/google/guava / encode

Method encode

guava/src/com/google/common/io/BaseEncoding.java:146–148  ·  view source on GitHub ↗

Encodes the specified byte array, and returns the encoded String.

(byte[] bytes)

Source from the content-addressed store, hash-verified

144
145 /** Encodes the specified byte array, and returns the encoded {@code String}. */
146 public String encode(byte[] bytes) {
147 return encode(bytes, 0, bytes.length);
148 }
149
150 /**
151 * Encodes the specified range of the specified byte array, and returns the encoded {@code

Callers 7

writeMethod · 0.45
closeMethod · 0.45
encodeChunkToMethod · 0.45
Base16EncodingMethod · 0.45
encodeToMethod · 0.45
readMethod · 0.45
toStringMethod · 0.45

Calls 4

maxEncodedSizeMethod · 0.95
encodeToMethod · 0.95
toStringMethod · 0.65
checkPositionIndexesMethod · 0.45

Tested by

no test coverage detected