21 namespace Lucene.Net.Analysis.Tokenattributes
28 private System.String type;
29 public const System.String DEFAULT_TYPE =
"word";
41 public virtual string Type
44 set { this.type = value; }
47 public override void Clear()
52 public override bool Equals(System.Object other)
61 return type.
Equals(((TypeAttribute) other).type);
67 public override int GetHashCode()
69 return type.GetHashCode();
78 override public System.Object Clone()