001 002package gudusoft.gsqlparser.pp.para.styleenums; 003 004public enum TLinefeedsCommaOption { 005 LfAfterComma, LfbeforeCommaWithSpace, LfBeforeComma; 006 007 public static TLinefeedsCommaOption of(String type) { 008 if (type == null) 009 return null; 010 for (TLinefeedsCommaOption value : TLinefeedsCommaOption.values()) { 011 if (value.name().equalsIgnoreCase(type)) { 012 return value; 013 } 014 } 015 return null; 016 } 017}