001package gudusoft.gsqlparser;
002
003
004public enum EQuantifierType {
005    none,
006    all,
007    some,
008    any
009}
010