Package org.gnome.pango
Enum Class BidiType
- All Implemented Interfaces:
Enumeration
,Serializable
,Comparable<BidiType>
,Constable
@Generated("io.github.jwharm.JavaGI")
@Deprecated
public enum BidiType
extends Enum<BidiType>
implements Enumeration
Deprecated.
PangoBidiType
represents the bidirectional character
type of a Unicode character.
The values in this enumeration are specified by the Unicode bidirectional algorithm.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDeprecated.Right-to-Left ArabicDeprecated.Arabic NumberDeprecated.Paragraph SeparatorDeprecated.Boundary NeutralDeprecated.Common Number SeparatorDeprecated.European NumberDeprecated.European Number SeparatorDeprecated.European Number TerminatorDeprecated.First strong isolate.Deprecated.Left-to-RightDeprecated.Left-to-Right EmbeddingDeprecated.Left-to-Right isolate.Deprecated.Left-to-Right OverrideDeprecated.Nonspacing MarkDeprecated.Other NeutralsDeprecated.Pop Directional FormatDeprecated.Pop directional isolate.Deprecated.Right-to-LeftDeprecated.Right-to-Left EmbeddingDeprecated.Right-to-Left isolate.Deprecated.Right-to-Left OverrideDeprecated.Segment SeparatorDeprecated.Whitespace -
Method Summary
Modifier and TypeMethodDescriptionstatic BidiType
forUnichar
(int ch) Deprecated.Determines the bidirectional type of a character.static Type
getType()
Deprecated.Get the GType of the BidiType classint
getValue()
Deprecated.Get the numeric value of this enumstatic BidiType
of
(int value) Deprecated.Create a new BidiType for the provided valuestatic BidiType
Deprecated.Returns the enum constant of this class with the specified name.static BidiType[]
values()
Deprecated.Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
L
-
LRE
-
LRO
-
R
-
AL
-
RLE
-
RLO
-
PDF
-
EN
-
ES
-
ET
-
AN
-
CS
-
NSM
-
BN
-
B
-
S
-
WS
-
ON
-
LRI
-
RLI
-
FSI
-
PDI
-
-
Method Details
-
values
Deprecated.Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Deprecated.Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
of
Deprecated.Create a new BidiType for the provided value- Parameters:
value
- the enum value- Returns:
- the enum for the provided value
-
getValue
public int getValue()Deprecated.Get the numeric value of this enum- Specified by:
getValue
in interfaceEnumeration
- Returns:
- the enum value
-
getType
-
forUnichar
Deprecated.Determines the bidirectional type of a character.The bidirectional type is specified in the Unicode Character Database.
A simplified version of this function is available as
Pango.unicharDirection(int)
.- Parameters:
ch
- a Unicode character- Returns:
- the bidirectional character type, as used in the Unicode bidirectional algorithm.
-