2014-10-27 21:12:57 +01:00
using System ;
using System.Collections.Generic ;
using System.ComponentModel.DataAnnotations ;
using System.Linq ;
using System.Text ;
using System.Threading.Tasks ;
namespace UnicodeInformation
{
public enum BidirectionalClass : byte
{
2014-11-02 21:56:24 +01:00
[ValueName("L"), ValueName("Left_To_Right"), Display(Name = "Left_To_Right", Description = "any strong left-to-right character")]
2014-10-27 21:12:57 +01:00
LeftToRight ,
2014-11-02 21:56:24 +01:00
[ValueName("R"), ValueName("Right_To_Left"), Display(Name = "Right_To_Left", Description = "any strong right-to-left (non-Arabic-type) character")]
2014-10-27 21:12:57 +01:00
RightToLeft ,
2014-11-02 21:56:24 +01:00
[ValueName("AL"), ValueName("Arabic_Letter"), Display(Name = "Arabic_Letter", Description = "any strong right-to-left (Arabic-type) character")]
2014-10-27 21:12:57 +01:00
ArabicLetter ,
2014-11-02 21:56:24 +01:00
[ValueName("EN"), ValueName("European_Number"), Display(Name = "European_Number", Description = "any ASCII digit or Eastern Arabic-Indic digit")]
2014-10-27 21:12:57 +01:00
EuropeanNumber ,
2014-11-02 21:56:24 +01:00
[ValueName("ES"), ValueName("European_Separator"), Display(Name = "European_Separator", Description = "plus and minus signs")]
2014-10-27 21:12:57 +01:00
EuropeanSeparator ,
2014-11-02 21:56:24 +01:00
[ValueName("ET"), ValueName("European_Terminator"), Display(Name = "European_Terminator", Description = "a terminator in a numeric format context, includes currency signs")]
2014-10-27 21:12:57 +01:00
EuropeanTerminator ,
2014-11-02 21:56:24 +01:00
[ValueName("AN"), ValueName("Arabic_Number"), Display(Name = "Arabic_Number", Description = "any Arabic-Indic digit")]
2014-10-27 21:12:57 +01:00
ArabicNumber ,
2014-11-02 21:56:24 +01:00
[ValueName("CS"), ValueName("Common_Separator"), Display(Name = "Common_Separator", Description = "commas, colons, and slashes")]
2014-10-27 21:12:57 +01:00
CommonSeparator ,
2014-11-02 21:56:24 +01:00
[ValueName("NSM"), ValueName("Nonspacing_Mark"), Display(Name = "Nonspacing_Mark", Description = "any nonspacing mark")]
2014-10-27 21:12:57 +01:00
NonspacingMark ,
2014-11-02 21:56:24 +01:00
[ValueName("BN"), ValueName("Boundary_Neutral"), Display(Name = "Boundary_Neutral", Description = "most format characters, control codes, or noncharacters")]
2014-10-27 21:12:57 +01:00
BoundaryNeutral ,
2014-11-02 21:56:24 +01:00
[ValueName("B"), ValueName("Paragraph_Separator"), Display(Name = "Paragraph_Separator", Description = "various newline characters")]
2014-10-27 21:12:57 +01:00
ParagraphSeparator ,
2014-11-02 21:56:24 +01:00
[ValueName("S"), ValueName("Segment_Separator"), Display(Name = "Segment_Separator", Description = "various segment-related control codes")]
2014-10-27 21:12:57 +01:00
SegmentSeparator ,
2014-11-02 21:56:24 +01:00
[ValueName("WS"), ValueName("White_Space"), Display(Name = "White_Space", Description = "spaces")]
2014-10-27 21:12:57 +01:00
WhiteSpace ,
2014-11-02 21:56:24 +01:00
[ValueName("ON"), ValueName("Other_Neutral"), Display(Name = "Other_Neutral", Description = "most other symbols and punctuation marks")]
2014-10-27 21:12:57 +01:00
OtherNeutral ,
2014-11-02 21:56:24 +01:00
[ValueName("LRE"), ValueName("Left_To_Right_Embedding"), Display(Name = "Left_To_Right_Embedding", Description = "U+202A: the LR embedding control")]
2014-10-27 21:12:57 +01:00
LeftToRightEmbedding ,
2014-11-02 21:56:24 +01:00
[ValueName("LRO"), ValueName("Left_To_Right_Override"), Display(Name = "Left_To_Right_Override", Description = "U+202D: the LR override control")]
2014-10-27 21:12:57 +01:00
LeftToRightOverride ,
2014-11-02 21:56:24 +01:00
[ValueName("RLE"), ValueName("Right_To_Left_Embedding"), Display(Name = "Right_To_Left_Embedding", Description = "U+202B: the RL embedding control")]
2014-10-27 21:12:57 +01:00
RightToLeftEmbedding ,
2014-11-02 21:56:24 +01:00
[ValueName("RLO"), ValueName("Right_To_Left_Override"), Display(Name = "Right_To_Left_Override", Description = "U+202E: the RL override control")]
2014-10-27 21:12:57 +01:00
RightToLeftOverride ,
2014-11-02 21:56:24 +01:00
[ValueName("PDF"), ValueName("Pop_Directional_Format"), Display(Name = "Pop_Directional_Format", Description = "U+202C: terminates an embedding or override control")]
2014-10-27 21:12:57 +01:00
PopDirectionalFormat ,
2014-11-02 21:56:24 +01:00
[ValueName("LRI"), ValueName("Left_To_Right_Isolate"), Display(Name = "Left_To_Right_Isolate", Description = "U+2066: the LR isolate control")]
2014-10-27 21:12:57 +01:00
LeftToRightIsolate ,
2014-11-02 21:56:24 +01:00
[ValueName("RLI"), ValueName("Right_To_Left_Isolate"), Display(Name = "Right_To_Left_Isolate", Description = "U+2067: the RL isolate control")]
2014-10-27 21:12:57 +01:00
RightToLeftIsolate ,
2014-11-02 21:56:24 +01:00
[ValueName("FSI"), ValueName("First_Strong_Isolate"), Display(Name = "First_Strong_Isolate", Description = "U+2068: the first strong isolate control")]
2014-10-27 21:12:57 +01:00
FirstStrongIsolate ,
2014-11-02 21:56:24 +01:00
[ValueName("PDI"), ValueName("Pop_Directional_Isolate"), Display(Name = "Pop_Directional_Isolate", Description = "U+2069: terminates an isolate control")]
2014-10-27 21:12:57 +01:00
PopDirectionalIsolate ,
}
}