com.rapiddweller.common.Encodings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rd-lib-common Show documentation
Show all versions of rd-lib-common Show documentation
'rapiddweller Common' is an open source Java library
forked from Databene Commons by Volker Bergmann.
It provides extensions to the Java core library by utility classes, abstract concepts
and concrete implementations.
/*
* Copyright (C) 2004-2015 Volker Bergmann ([email protected]).
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.rapiddweller.common;
/**
* Provides names for frequently used encodings.
* Created: 16.12.2009 08:38:45
*
* @author Volker Bergmann
* @since 0.5.0
*/
public interface Encodings {
/**
* The constant ASCII.
*/
String ASCII = "US-ASCII";
/**
* The constant UTF_8.
*/
String UTF_8 = "UTF-8";
/**
* The constant UTF_16.
*/
String UTF_16 = "UTF-16";
/**
* The constant UTF_16BE.
*/
String UTF_16BE = "UTF-16BE";
/**
* The constant UTF_16LE.
*/
String UTF_16LE = "UTF-16LE";
/**
* The constant UTF_32.
*/
String UTF_32 = "UTF-32";
/**
* The constant UTF_32BE.
*/
String UTF_32BE = "UTF-32BE";
/**
* The constant UTF_32LE.
*/
String UTF_32LE = "UTF-32LE";
/**
* The constant ISO_2022_CN.
*/
String ISO_2022_CN = "ISO-2022-CN";
/**
* The constant ISO_2022_JP.
*/
String ISO_2022_JP = "ISO-2022-JP";
/**
* The constant ISO_2022_JP2.
*/
String ISO_2022_JP2 = "ISO-2022-JP-2";
/**
* The constant ISO_2022_KR.
*/
String ISO_2022_KR = "ISO-2022-KR";
/**
* The constant ISO_8859_1.
*/
String ISO_8859_1 = "ISO-8859-1";
/**
* The constant ISO_8859_13.
*/
String ISO_8859_13 = "ISO-8859-13";
/**
* The constant ISO_8859_15.
*/
String ISO_8859_15 = "ISO-8859-15";
/**
* The constant ISO_8859_2.
*/
String ISO_8859_2 = "ISO-8859-2";
/**
* The constant ISO_8859_3.
*/
String ISO_8859_3 = "ISO-8859-3";
/**
* The constant ISO_8859_4.
*/
String ISO_8859_4 = "ISO-8859-4";
/**
* The constant ISO_8859_5.
*/
String ISO_8859_5 = "ISO-8859-5";
/**
* The constant ISO_8859_6.
*/
String ISO_8859_6 = "ISO-8859-6";
/**
* The constant ISO_8859_7.
*/
String ISO_8859_7 = "ISO-8859-7";
/**
* The constant ISO_8859_8.
*/
String ISO_8859_8 = "ISO-8859-8";
/**
* The constant ISO_8859_9.
*/
String ISO_8859_9 = "ISO-8859-9";
/**
* The constant MAC_ROMAN.
*/
String MAC_ROMAN = "MacRoman";
/**
* The constant WIN_1252.
*/
String WIN_1252 = "windows-1252";
}