com.plenigo.sdk.internal.util.Charset Maven / Gradle / Ivy
package com.plenigo.sdk.internal.util;
/**
*
* This class contains the charset required by the API
* since JDK 6 does not have them in constants.
*
*
* IMPORTANT: This class is part of the internal API, please do not use it, because it can
* be removed in future versions of the SDK or access to such elements could
* be changed from 'public' to 'default' or less.
*
*
* Thread safety: This class is thread safe and can be injected.
*
*/
public final class Charset {
/**
* Default constructor.
*/
private Charset() {
}
/**
* The UTF-8 Charset.
*/
public static final String UTF8 = "UTF-8";
/**
* The UTF-8 Charset.
*/
public static final String DEFAULT = UTF8;
}