업데이트 :: 2018.10.01 Stream CollectStream Collectpublic class Doc_Collect { public static void main(String[] args) { collectToList(); collectToSet(); collectToCustom(); } /** * 이용 조건에 맞는 List로 재조합 * * @date 2018.09.27 * @author SDM * @version 1.0 */ public static void collectToList() { List totalList = Arrays.asList( new Student("nameA", 10, Student.Zender.MALE, Student.City.Seoul), new Student("n..