001 /* 002 * Created on Jun 8, 2005 003 * 004 */ 005 package aima.util; 006 007 import java.util.ArrayList; 008 import java.util.HashSet; 009 import java.util.List; 010 import java.util.Set; 011 012 /** 013 * @author Ravi Mohan 014 * 015 */ 016 017 public class Converter<T> { 018 019 public List<T> setToList(Set<T> set) { 020 List<T> retVal = new ArrayList<T>(set); 021 return retVal; 022 } 023 024 public Set<T> listToSet(List<T> l) { 025 026 Set<T> retVal = new HashSet<T>(l); 027 return retVal; 028 029 } 030 031 }