Esempio n. 1
0
 public static bool IsOnomatopoetic(this WordType type) => type.GetBigType() == WordType.Onomatopoetic;
Esempio n. 2
0
 public static bool IsUnknow(this WordType type) => type.GetBigType() == WordType.Unknow;
Esempio n. 3
0
 public static bool IsClassification(this WordType type) => type.GetBigType() == WordType.Classifier || type == WordType.NounTimeClassifer;
Esempio n. 4
0
 public static bool IsMark(this WordType type) => type.GetBigType() == WordType.Mark;
Esempio n. 5
0
 public static bool IsExclamtion(this WordType type) => type.GetBigType() == WordType.Exclamation;
Esempio n. 6
0
 public static bool IsIdiom(this WordType type) => type.GetBigType() == WordType.Idiom;
Esempio n. 7
0
 public static bool IsAbbraviation(this WordType type) => type.GetBigType() == WordType.Abbreviation;
Esempio n. 8
0
 public static bool IsProNoun(this WordType type) => type.GetBigType() == WordType.Pronoun;
Esempio n. 9
0
 public static bool IsAuxliary(this WordType type) => type.GetBigType() == WordType.Auxiliary;
Esempio n. 10
0
 public static bool IsNumber(this WordType type) => type.GetBigType() == WordType.Number;
Esempio n. 11
0
 public static bool IsPreposition(this WordType type) => type.GetBigType() == WordType.Preposition;
Esempio n. 12
0
 public static bool IsNotStructureConjunction(this WordType type) => type.GetBigType() == WordType.Conjunction && (type != WordType.ConjunctionStructureAnd && type != WordType.ConjunctionStructureOr);
Esempio n. 13
0
 public static bool IsConjunction(this WordType type) => type.GetBigType() == WordType.Conjunction;
Esempio n. 14
0
 public static bool IsAdverb(this WordType type) => type.GetBigType() == WordType.Adverb;
Esempio n. 15
0
 public static bool IsAdjective(this WordType type) => type.GetBigType() == WordType.AdJective;
Esempio n. 16
0
 public static bool IsNoun(this WordType type) => type.GetBigType() == WordType.Noun;