enum class CharDirectionality
Platform and version requirements: JVM
Represents the Unicode directionality of a character. Character directionality is used to calculate the visual ordering of text.
Undefined bidirectional character type. Undefined | |
Strong bidirectional character type "L" in the Unicode specification. | |
Strong bidirectional character type "R" in the Unicode specification. | |
Strong bidirectional character type "AL" in the Unicode specification. | |
Weak bidirectional character type "EN" in the Unicode specification. | |
Weak bidirectional character type "ES" in the Unicode specification. | |
Weak bidirectional character type "ET" in the Unicode specification. | |
Weak bidirectional character type "AN" in the Unicode specification. | |
Weak bidirectional character type "CS" in the Unicode specification. | |
Weak bidirectional character type "NSM" in the Unicode specification. | |
Weak bidirectional character type "BN" in the Unicode specification. | |
Neutral bidirectional character type "B" in the Unicode specification. | |
Neutral bidirectional character type "S" in the Unicode specification. | |
Neutral bidirectional character type "WS" in the Unicode specification. | |
Neutral bidirectional character type "ON" in the Unicode specification. | |
Strong bidirectional character type "LRE" in the Unicode specification. | |
Strong bidirectional character type "LRO" in the Unicode specification. | |
Strong bidirectional character type "RLE" in the Unicode specification. | |
Strong bidirectional character type "RLO" in the Unicode specification. | |
Weak bidirectional character type "PDF" in the Unicode specification. |
val value: Int |
fun clone(): Any Throws an exception since enum constants cannot be cloned. This method prevents enum classes from inheriting from | |
fun compareTo(other: E): Int Compares this object with the specified object for order. Returns zero if this object is equal to the specified other object, a negative number if it's less than other, or a positive number if it's greater than other. | |
fun equals(other: Any?): Boolean Indicates whether some other object is "equal to" this one. Implementations must fulfil the following requirements: | |
fun hashCode(): Int Returns a hash code value for the object. The general contract of hashCode is: | |
open fun toString(): String Returns a string representation of the object. |
fun valueOf(directionality: Int): CharDirectionality |
© 2010–2018 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.text/-char-directionality/index.html