com.jtransc.charset.charsets.JTranscCharsetUTF16BE 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;
public class JTranscCharsetUTF16BE extends JTranscCharsetUTF16Base {
public JTranscCharsetUTF16BE() {
super(new String[] { "UTF-16BE", "UnicodeBigUnmarked", "X-UTF-16BE", "ISO-10646-UCS-2" }, false);
}
}