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

com.rt.storage.api.client.util.Charsets Maven / Gradle / Ivy

package com.rt.storage.api.client.util;

import java.nio.charset.Charset;

/**
 * Contains constant definitions for some standard {@link Charset} instances that are guaranteed to
 * be supported by all Java platform implementations.
 *
 * @since 1.14
 * @author Yaniv Inbar
 */
public final class Charsets {

  /** UTF-8 charset. */
  public static final Charset UTF_8 = Charset.forName("UTF-8");

  /** ISO-8859-1 charset. */
  public static final Charset ISO_8859_1 = Charset.forName("ISO-8859-1");

  private Charsets() {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy