Uses of Interface
edu.rice.comp211.laundry.list.EnumI

Packages that use EnumI
edu.rice.comp211.laundry.list   
edu.rice.comp211.laundry.student   
edu.rice.comp211.laundry.sync   
edu.rice.comp211.laundry.ui   
 

Uses of EnumI in edu.rice.comp211.laundry.list
 

Subinterfaces of EnumI in edu.rice.comp211.laundry.list
 interface BiListI<T>
           
 interface ListI<T>
          A mutable linear list of elements of type T that can be scanned from first (front) to last (rear).
 

Classes in edu.rice.comp211.laundry.list that implement EnumI
 class BiList<T>
          A circularly linked class implementing the BiListI interface.
 

Uses of EnumI in edu.rice.comp211.laundry.student
 

Methods in edu.rice.comp211.laundry.student that return EnumI
 EnumI<Garment> StudentEnvironment.cleanPants()
          Accessor for the student's pile of clean pants
 EnumI<Garment> StudentEnvironment.cleanShirts()
          Accessor for the student's pile of clean shirts
 EnumI<Garment> StudentEnvironment.cleanSocks()
          Accessor for the student's pile of clean socks
 EnumI<Garment> StudentEnvironment.dirtyPile()
          Accessor for the student's pile of dirty garments
 EnumI<BiListI<Garment>> StudentEnvironment.laundryRoom()
          Accessor for the student's laundry room (list of list of laundered garments)
 

Uses of EnumI in edu.rice.comp211.laundry.sync
 

Classes in edu.rice.comp211.laundry.sync that implement EnumI
 class SyncBiList<T>
          Specialty BiList that is used by the GUI to create animations by slowing the speed of the list operations down.
 

Uses of EnumI in edu.rice.comp211.laundry.ui
 

Methods in edu.rice.comp211.laundry.ui with parameters of type EnumI
private
<T> java.util.List<T>
StudentModel.convertToList(EnumI<T> inputEnum)