Class EnumerationList<T>

  • All Implemented Interfaces:
    Iterable<T>, Collection<T>, List<T>

    public class EnumerationList<T>
    extends com.google.common.collect.ForwardingList<T>
    An Enumeration -> List adaptor
    Author:
    Pete Muir
    • Constructor Detail

      • EnumerationList

        public EnumerationList​(Enumeration<T> enumeration)
        Constructor
        Parameters:
        enumeration - The enumeration
    • Method Detail

      • delegate

        protected List<T> delegate()
        Specified by:
        delegate in class com.google.common.collect.ForwardingList<T>