-
Notifications
You must be signed in to change notification settings - Fork 3
kiwi.nio.Charset
Nikos Siatras edited this page Sep 29, 2022
·
6 revisions
This is the Charset Type of Kiwi. It exists inside the kiwi\nio\Charset.bi file.
| Method | Description |
|---|---|
| Charset.forName(charsetName as String) | Returns a new Charset instance |
| Charset.getCharsetName() | Returns the charset's name |
| Field | Description |
|---|---|
| Charset.ASCII | Returns an ASCII Charset instance |
| Charset.UTF8 | Returns a UTF8 Charset instance |
#include once "kiwi\kiwi.bi"
' Initialize a new UTF8 charset
Dim utf8Charset as Charset = Charset.forName("utf8")#include once "kiwi\kiwi.bi"
' Initialize charset from Charset static fields
Dim asciiCharset as Charset = Charset.ASCII
Dim utf8Charset as Charset = Charset.UTF8- MySQL/MariaDB - Coming to v1.0.2
- ArrayList
- Comparator
- HashMap - Coming to v1.0.2
- Queue