001package com.box.sdk;
002
003import java.nio.charset.Charset;
004
005/**
006 * Constant definitions for the standard Charsets.
007 *
008 * <p>NB: Replace with java.nio.charset.StandardCharsets when we drop 1.6 support.
009 */
010public final class StandardCharsets {
011
012  /** Eight-bit UCS Transformation Format. */
013  public static final Charset UTF_8 = Charset.forName("UTF-8");
014
015  private StandardCharsets() {
016    throw new UnsupportedOperationException();
017  }
018}