RandomSec/main/src/com/google/refine/importers/parsers/TreeParserToken.java

13 lines
273 B
Java
Raw Normal View History

package com.google.refine.importers.parsers;
public enum TreeParserToken {
Ignorable,
StartDocument,
EndDocument,
StartEntity,
EndEntity,
Value
//append additional tokens as necessary (most are just mapped to Value or Ignorable)
}