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