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

com.box.sdk.StandardCharsets Maven / Gradle / Ivy

The newest version!
package com.box.sdk;

import java.nio.charset.Charset;

/**
 * Constant definitions for the standard Charsets.
 * 

* NB: Replace with java.nio.charset.StandardCharsets when we drop 1.6 support. */ public final class StandardCharsets { /** * Eight-bit UCS Transformation Format. */ public static final Charset UTF_8 = Charset.forName("UTF-8"); private StandardCharsets() { throw new UnsupportedOperationException(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy