Class SavedTrack.Builder

    • Constructor Summary

      Constructors 
      Constructor Description
      Builder()  
    • Method Summary

      Modifier and Type Method Description
      SavedTrack build()
      Build a model object with the information set in the builder object.
      SavedTrack.Builder setAddedAt​(java.util.Date addedAt)
      Set the "added at" date of the saved track to be built.
      SavedTrack.Builder setTrack​(Track track)
      Set the full track object of the saved track to be built.
      • Methods inherited from class java.lang.Object

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

      • Builder

        public Builder()
    • Method Detail

      • setAddedAt

        public SavedTrack.Builder setAddedAt​(java.util.Date addedAt)
        Set the "added at" date of the saved track to be built.
        Parameters:
        addedAt - The date and time the track was saved.
        Returns:
        A SavedTrack.Builder.
      • build

        public SavedTrack build()
        Description copied from interface: IModelObject.Builder
        Build a model object with the information set in the builder object.
        The type of the model object and its methods depend on its corresponding implementation.
        Returns:
        A model object.