public static string GetTypeValue(SQLTokenTypeEnum type)
 {
     if (_regexes.ContainsKey(type))
     {
         return(_regexes[type]);
     }
     throw new InvalidOperationException();
 }
 public SQLTokenType(SQLTokenTypeEnum type)
 {
     _type = type;
 }