com.jtransc.charset.charsets.JTranscCharsetUTF16LE Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtransc-rt Show documentation
Show all versions of jtransc-rt Show documentation
JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.
package com.jtransc.charset.charsets;
import com.jtransc.JTranscBits;
import java.io.ByteArrayOutputStream;
import com.jtransc.charset.JTranscCharset;
public class JTranscCharsetUTF16LE extends JTranscCharsetUTF16Base {
public JTranscCharsetUTF16LE() {
super(new String[] { "UTF-16LE", "UTF-16", "UnicodeLittleUnmarked", "X-UTF-16LE" }, false);
}
}