W3cubDocs

/Kotlin

Charsets

object Charsets

Platform and version requirements: JVM

Constant definitions for the standard charsets. These charsets are guaranteed to be available on every implementation of the Java platform.

Properties

ISO_8859_1

val ISO_8859_1: Charset

ISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1.

US_ASCII

val US_ASCII: Charset

Seven-bit ASCII, a.k.a. ISO646-US, a.k.a. the Basic Latin block of the Unicode character set.

UTF_16

val UTF_16: Charset

Sixteen-bit UCS Transformation Format, byte order identified by an optional byte-order mark.

UTF_16BE

val UTF_16BE: Charset

Sixteen-bit UCS Transformation Format, big-endian byte order.

UTF_16LE

val UTF_16LE: Charset

Sixteen-bit UCS Transformation Format, little-endian byte order.

UTF_32

val UTF_32: Charset

32-bit Unicode (or UCS) Transformation Format, byte order identified by an optional byte-order mark

UTF_32BE

val UTF_32BE: Charset

32-bit Unicode (or UCS) Transformation Format, big-endian byte order.

UTF_32LE

val UTF_32LE: Charset

32-bit Unicode (or UCS) Transformation Format, little-endian byte order.

UTF_8

val UTF_8: Charset

Eight-bit UCS Transformation Format.

Inherited Functions

equals

open operator fun equals(other: Any?): Boolean

Indicates whether some other object is "equal to" this one. Implementations must fulfil the following requirements:

hashCode

open fun hashCode(): Int

Returns a hash code value for the object. The general contract of hashCode is:

toString

open fun toString(): String

Returns a string representation of the object.

© 2010–2017 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/-charsets/