-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEnumOar.CS
More file actions
36 lines (35 loc) · 941 Bytes
/
Copy pathEnumOar.CS
File metadata and controls
36 lines (35 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace AnionICation. OArkie
{
public enum EnumOar
{
[Description("Empty")]
Empty,
[Description("Single Symbol")]
Symbol,
[Description("Single Letter")]
Character,
[Description("Sequence of Digits")]
Number,
[Description("Sequence of Letters")]
Thread,
[Description("Sequence of Punctuations")]
Punctuate,
[Description("Sequence of Separators")]
Separate,
[Description("Quotient of Thread by Pascal and Camel Form")]
Token,
[Description("Sequence of White Spaces")]
Space,
[Description("Product of Symbol and Tail-Factor Number")]
Integer,
[Description("Product of Integer and Tail-Factor Integer")]
Constant,
[Description("Product of Letter and Tail-Factor Integer")]
Identifier
}
}