LowPriorityCodecImplicits

class Object
trait Matchable
class Any
object Codec

Value members

Inherited constructors

def this()
Inherited from
Codec
Source
Codec.scala

Inherited methods

def apply(decoder: CharsetDecoder): Codec
Inherited from
Codec
Source
Codec.scala
def apply(charSet: Charset): Codec
Inherited from
Codec
Source
Codec.scala
def apply(encoding: String): Codec
Inherited from
Codec
Source
Codec.scala
Inherited from
Codec
Source
Codec.scala

Optimistically these two possible defaults will be the same thing.

Optimistically these two possible defaults will be the same thing. In practice this is not necessarily true, and in fact Sun classifies the fact that you can influence anything at all via -Dfile.encoding as an accident, with any anomalies considered "not a bug".

Inherited from
Codec
Source
Codec.scala
Inherited from
Codec
Source
Codec.scala
def fromUTF8(bytes: Array[Byte], offset: Int, len: Int): Array[Char]
Inherited from
Codec
Source
Codec.scala
@migration("This method was previously misnamed `toUTF8`. Converts from Array[Byte] to Array[Char].", "2.9.0")
def fromUTF8(bytes: Array[Byte]): Array[Char]
Inherited from
Codec
Source
Codec.scala
def toUTF8(chars: Array[Char], offset: Int, len: Int): Array[Byte]
Inherited from
Codec
Source
Codec.scala
@migration("This method was previously misnamed `fromUTF8`. Converts from character sequence to Array[Byte].", "2.9.0")
Inherited from
Codec
Source
Codec.scala

Inherited fields

final val ISO8859: Codec
Inherited from
Codec
Source
Codec.scala
final val UTF8: Codec
Inherited from
Codec
Source
Codec.scala

Implicits

Implicits

implicit lazy val fallbackSystemCodec: Codec

The Codec of Last Resort.

The Codec of Last Resort.

Source
Codec.scala

Inherited implicits

implicit def charset2codec(c: Charset): Codec
Inherited from
Codec
Source
Codec.scala
Inherited from
Codec
Source
Codec.scala
implicit def string2codec(s: String): Codec
Inherited from
Codec
Source
Codec.scala