All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sphere.sdk.client.HttpResponseBodyUtils Maven / Gradle / Ivy

There is a newer version: 1.0.0-M26
Show newest version
package io.sphere.sdk.client;

import io.sphere.sdk.models.Base;

import java.nio.charset.StandardCharsets;

final class HttpResponseBodyUtils extends Base {
    private HttpResponseBodyUtils() {
    }

    public static String bytesToString(final byte[] b) {
        return new String(b, StandardCharsets.UTF_8);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy