Class VolumeList

  • Direct Known Subclasses:
    AutoValue_VolumeList

    public abstract class VolumeList
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      VolumeList()  
    • Method Summary

      All Methods Static Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      (package private) static VolumeList create​(java.util.List<Volume> volumes, java.util.List<java.lang.String> warnings)  
      abstract com.google.common.collect.ImmutableList<Volume> volumes()  
      abstract com.google.common.collect.ImmutableList<java.lang.String> warnings()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • VolumeList

        public VolumeList()
    • Method Detail

      • volumes

        @Nullable
        public abstract com.google.common.collect.ImmutableList<Volume> volumes()
      • warnings

        @Nullable
        public abstract com.google.common.collect.ImmutableList<java.lang.String> warnings()
      • create

        static VolumeList create​(java.util.List<Volume> volumes,
                                 java.util.List<java.lang.String> warnings)