From 9a234079437a1532072ed5f0bce0203922719b0f Mon Sep 17 00:00:00 2001 From: Clyhtsuriva Date: Sun, 27 Jun 2021 12:54:48 +0200 Subject: Fix : Javadoc missing --- target/site/apidocs/musichub/business/Album.html | 250 +++++++++++++ .../site/apidocs/musichub/business/AudioBook.html | 273 ++++++++++++++ .../apidocs/musichub/business/AudioElement.html | 325 ++++++++++++++++ .../site/apidocs/musichub/business/Category.html | 258 +++++++++++++ target/site/apidocs/musichub/business/Genre.html | 266 +++++++++++++ .../site/apidocs/musichub/business/Language.html | 258 +++++++++++++ .../site/apidocs/musichub/business/MusicHub.html | 412 +++++++++++++++++++++ .../musichub/business/NoAlbumFoundException.html | 150 ++++++++ .../musichub/business/NoElementFoundException.html | 150 ++++++++ .../business/NoPlayListFoundException.html | 150 ++++++++ .../site/apidocs/musichub/business/PlayList.html | 215 +++++++++++ target/site/apidocs/musichub/business/Song.html | 251 +++++++++++++ .../apidocs/musichub/business/class-use/Album.html | 99 +++++ .../musichub/business/class-use/AudioBook.html | 65 ++++ .../musichub/business/class-use/AudioElement.html | 124 +++++++ .../musichub/business/class-use/Category.html | 101 +++++ .../apidocs/musichub/business/class-use/Genre.html | 98 +++++ .../musichub/business/class-use/Language.html | 101 +++++ .../musichub/business/class-use/MusicHub.html | 65 ++++ .../business/class-use/NoAlbumFoundException.html | 101 +++++ .../class-use/NoElementFoundException.html | 95 +++++ .../class-use/NoPlayListFoundException.html | 94 +++++ .../musichub/business/class-use/PlayList.html | 99 +++++ .../apidocs/musichub/business/class-use/Song.html | 90 +++++ .../apidocs/musichub/business/package-summary.html | 116 ++++++ .../apidocs/musichub/business/package-tree.html | 114 ++++++ .../apidocs/musichub/business/package-use.html | 105 ++++++ 27 files changed, 4425 insertions(+) create mode 100644 target/site/apidocs/musichub/business/Album.html create mode 100644 target/site/apidocs/musichub/business/AudioBook.html create mode 100644 target/site/apidocs/musichub/business/AudioElement.html create mode 100644 target/site/apidocs/musichub/business/Category.html create mode 100644 target/site/apidocs/musichub/business/Genre.html create mode 100644 target/site/apidocs/musichub/business/Language.html create mode 100644 target/site/apidocs/musichub/business/MusicHub.html create mode 100644 target/site/apidocs/musichub/business/NoAlbumFoundException.html create mode 100644 target/site/apidocs/musichub/business/NoElementFoundException.html create mode 100644 target/site/apidocs/musichub/business/NoPlayListFoundException.html create mode 100644 target/site/apidocs/musichub/business/PlayList.html create mode 100644 target/site/apidocs/musichub/business/Song.html create mode 100644 target/site/apidocs/musichub/business/class-use/Album.html create mode 100644 target/site/apidocs/musichub/business/class-use/AudioBook.html create mode 100644 target/site/apidocs/musichub/business/class-use/AudioElement.html create mode 100644 target/site/apidocs/musichub/business/class-use/Category.html create mode 100644 target/site/apidocs/musichub/business/class-use/Genre.html create mode 100644 target/site/apidocs/musichub/business/class-use/Language.html create mode 100644 target/site/apidocs/musichub/business/class-use/MusicHub.html create mode 100644 target/site/apidocs/musichub/business/class-use/NoAlbumFoundException.html create mode 100644 target/site/apidocs/musichub/business/class-use/NoElementFoundException.html create mode 100644 target/site/apidocs/musichub/business/class-use/NoPlayListFoundException.html create mode 100644 target/site/apidocs/musichub/business/class-use/PlayList.html create mode 100644 target/site/apidocs/musichub/business/class-use/Song.html create mode 100644 target/site/apidocs/musichub/business/package-summary.html create mode 100644 target/site/apidocs/musichub/business/package-tree.html create mode 100644 target/site/apidocs/musichub/business/package-use.html (limited to 'target/site/apidocs/musichub/business') diff --git a/target/site/apidocs/musichub/business/Album.html b/target/site/apidocs/musichub/business/Album.html new file mode 100644 index 0000000..973b265 --- /dev/null +++ b/target/site/apidocs/musichub/business/Album.html @@ -0,0 +1,250 @@ + + + + + +Album (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class Album

+
+
java.lang.Object +
musichub.business.Album
+
+
+
+
public class Album +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    + +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      addSong

      +
      public void addSong(UUID song)
      +
      +
    • +
    • +
      +

      getSongs

      +
      public List<UUID> getSongs()
      +
      +
    • +
    • +
      +

      getSongsRandomly

      +
      public ArrayList<UUID> getSongsRandomly()
      +
      +
    • +
    • +
      +

      getTitle

      +
      public String getTitle()
      +
      +
    • +
    • +
      +

      getDate

      +
      public Date getDate()
      +
      +
    • +
    • +
      +

      createXMLElement

      +
      public void createXMLElement(Document document, + Element parentElement)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/AudioBook.html b/target/site/apidocs/musichub/business/AudioBook.html new file mode 100644 index 0000000..f9f339c --- /dev/null +++ b/target/site/apidocs/musichub/business/AudioBook.html @@ -0,0 +1,273 @@ + + + + + +AudioBook (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class AudioBook

+
+
java.lang.Object +
musichub.business.AudioElement +
musichub.business.AudioBook
+
+
+
+
+
public class AudioBook +extends AudioElement
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      AudioBook

      +
      public AudioBook(String title, + String artist, + int lengthInSeconds, + String uid, + String content, + String language, + String category)
      +
      +
    • +
    • +
      +

      AudioBook

      +
      public AudioBook(String title, + String artist, + int lengthInSeconds, + String content, + String language, + String category)
      +
      +
    • +
    • +
      +

      AudioBook

      +
      public AudioBook(Element xmlElement)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getLanguage

      +
      public Language getLanguage()
      +
      +
    • +
    • +
      +

      setLanguage

      +
      public void setLanguage(String language)
      +
      +
    • +
    • +
      +

      getCategory

      +
      public Category getCategory()
      +
      +
    • +
    • +
      +

      setCategory

      +
      public void setCategory(String category)
      +
      +
    • +
    • +
      +

      toString

      +
      public String toString()
      +
      +
      Overrides:
      +
      toString in class AudioElement
      +
      +
      +
    • +
    • +
      +

      createXMLElement

      +
      public void createXMLElement(Document document, + Element parentElement)
      +
      +
      Overrides:
      +
      createXMLElement in class AudioElement
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/AudioElement.html b/target/site/apidocs/musichub/business/AudioElement.html new file mode 100644 index 0000000..0765c5e --- /dev/null +++ b/target/site/apidocs/musichub/business/AudioElement.html @@ -0,0 +1,325 @@ + + + + + +AudioElement (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class AudioElement

+
+
java.lang.Object +
musichub.business.AudioElement
+
+
+
+
Direct Known Subclasses:
+
AudioBook, Song
+
+
+
public abstract class AudioElement +extends Object
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/Category.html b/target/site/apidocs/musichub/business/Category.html new file mode 100644 index 0000000..78478cc --- /dev/null +++ b/target/site/apidocs/musichub/business/Category.html @@ -0,0 +1,258 @@ + + + + + +Category (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Enum Class Category

+
+
java.lang.Object +
java.lang.Enum<Category> +
musichub.business.Category
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<Category>, Constable
+
+
+
public enum Category +extends Enum<Category>
+
+
+ +
+
+
    + +
  • +
    +

    Enum Constant Details

    +
      +
    • +
      +

      YOUTH

      +
      public static final Category YOUTH
      +
      +
    • +
    • +
      +

      NOVEL

      +
      public static final Category NOVEL
      +
      +
    • +
    • +
      +

      THEATER

      +
      public static final Category THEATER
      +
      +
    • +
    • +
      +

      DOCUMENTARY

      +
      public static final Category DOCUMENTARY
      +
      +
    • +
    • +
      +

      SPEECH

      +
      public static final Category SPEECH
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      values

      +
      public static Category[] values()
      +
      Returns an array containing the constants of this enum class, in +the order they are declared.
      +
      +
      Returns:
      +
      an array containing the constants of this enum class, in the order they are declared
      +
      +
      +
    • +
    • +
      +

      valueOf

      +
      public static Category valueOf(String name)
      +
      Returns the enum constant of this class with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this class. (Extraneous whitespace characters are +not permitted.)
      +
      +
      Parameters:
      +
      name - the name of the enum constant to be returned.
      +
      Returns:
      +
      the enum constant with the specified name
      +
      Throws:
      +
      IllegalArgumentException - if this enum class has no constant with the specified name
      +
      NullPointerException - if the argument is null
      +
      +
      +
    • +
    • +
      +

      getCategory

      +
      public String getCategory()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/Genre.html b/target/site/apidocs/musichub/business/Genre.html new file mode 100644 index 0000000..1e8368a --- /dev/null +++ b/target/site/apidocs/musichub/business/Genre.html @@ -0,0 +1,266 @@ + + + + + +Genre (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Enum Class Genre

+
+
java.lang.Object +
java.lang.Enum<Genre> +
musichub.business.Genre
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<Genre>, Constable
+
+
+
public enum Genre +extends Enum<Genre>
+
+
+ +
+
+
    + +
  • +
    +

    Enum Constant Details

    +
      +
    • +
      +

      JAZZ

      +
      public static final Genre JAZZ
      +
      +
    • +
    • +
      +

      CLASSIC

      +
      public static final Genre CLASSIC
      +
      +
    • +
    • +
      +

      HIPHOP

      +
      public static final Genre HIPHOP
      +
      +
    • +
    • +
      +

      ROCK

      +
      public static final Genre ROCK
      +
      +
    • +
    • +
      +

      POP

      +
      public static final Genre POP
      +
      +
    • +
    • +
      +

      RAP

      +
      public static final Genre RAP
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      values

      +
      public static Genre[] values()
      +
      Returns an array containing the constants of this enum class, in +the order they are declared.
      +
      +
      Returns:
      +
      an array containing the constants of this enum class, in the order they are declared
      +
      +
      +
    • +
    • +
      +

      valueOf

      +
      public static Genre valueOf(String name)
      +
      Returns the enum constant of this class with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this class. (Extraneous whitespace characters are +not permitted.)
      +
      +
      Parameters:
      +
      name - the name of the enum constant to be returned.
      +
      Returns:
      +
      the enum constant with the specified name
      +
      Throws:
      +
      IllegalArgumentException - if this enum class has no constant with the specified name
      +
      NullPointerException - if the argument is null
      +
      +
      +
    • +
    • +
      +

      getGenre

      +
      public String getGenre()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/Language.html b/target/site/apidocs/musichub/business/Language.html new file mode 100644 index 0000000..373acb6 --- /dev/null +++ b/target/site/apidocs/musichub/business/Language.html @@ -0,0 +1,258 @@ + + + + + +Language (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Enum Class Language

+
+
java.lang.Object +
java.lang.Enum<Language> +
musichub.business.Language
+
+
+
+
+
All Implemented Interfaces:
+
Serializable, Comparable<Language>, Constable
+
+
+
public enum Language +extends Enum<Language>
+
+
+ +
+
+
    + +
  • +
    +

    Enum Constant Details

    +
      +
    • +
      +

      FRENCH

      +
      public static final Language FRENCH
      +
      +
    • +
    • +
      +

      ENGLISH

      +
      public static final Language ENGLISH
      +
      +
    • +
    • +
      +

      ITALIAN

      +
      public static final Language ITALIAN
      +
      +
    • +
    • +
      +

      SPANISH

      +
      public static final Language SPANISH
      +
      +
    • +
    • +
      +

      GERMAN

      +
      public static final Language GERMAN
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      values

      +
      public static Language[] values()
      +
      Returns an array containing the constants of this enum class, in +the order they are declared.
      +
      +
      Returns:
      +
      an array containing the constants of this enum class, in the order they are declared
      +
      +
      +
    • +
    • +
      +

      valueOf

      +
      public static Language valueOf(String name)
      +
      Returns the enum constant of this class with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this class. (Extraneous whitespace characters are +not permitted.)
      +
      +
      Parameters:
      +
      name - the name of the enum constant to be returned.
      +
      Returns:
      +
      the enum constant with the specified name
      +
      Throws:
      +
      IllegalArgumentException - if this enum class has no constant with the specified name
      +
      NullPointerException - if the argument is null
      +
      +
      +
    • +
    • +
      +

      getLanguage

      +
      public String getLanguage()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/MusicHub.html b/target/site/apidocs/musichub/business/MusicHub.html new file mode 100644 index 0000000..796ef55 --- /dev/null +++ b/target/site/apidocs/musichub/business/MusicHub.html @@ -0,0 +1,412 @@ + + + + + +MusicHub (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class MusicHub

+
+
java.lang.Object +
musichub.business.MusicHub
+
+
+
+
public class MusicHub +extends Object
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/NoAlbumFoundException.html b/target/site/apidocs/musichub/business/NoAlbumFoundException.html new file mode 100644 index 0000000..b97e96b --- /dev/null +++ b/target/site/apidocs/musichub/business/NoAlbumFoundException.html @@ -0,0 +1,150 @@ + + + + + +NoAlbumFoundException (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class NoAlbumFoundException

+
+
java.lang.Object +
java.lang.Throwable +
java.lang.Exception +
musichub.business.NoAlbumFoundException
+
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class NoAlbumFoundException +extends Exception
+
+
See Also:
+
Serialized Form
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      NoAlbumFoundException

      +
      public NoAlbumFoundException(String msg)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/NoElementFoundException.html b/target/site/apidocs/musichub/business/NoElementFoundException.html new file mode 100644 index 0000000..02158e1 --- /dev/null +++ b/target/site/apidocs/musichub/business/NoElementFoundException.html @@ -0,0 +1,150 @@ + + + + + +NoElementFoundException (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class NoElementFoundException

+
+
java.lang.Object +
java.lang.Throwable +
java.lang.Exception +
musichub.business.NoElementFoundException
+
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class NoElementFoundException +extends Exception
+
+
See Also:
+
Serialized Form
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      NoElementFoundException

      +
      public NoElementFoundException(String msg)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/NoPlayListFoundException.html b/target/site/apidocs/musichub/business/NoPlayListFoundException.html new file mode 100644 index 0000000..cb1bead --- /dev/null +++ b/target/site/apidocs/musichub/business/NoPlayListFoundException.html @@ -0,0 +1,150 @@ + + + + + +NoPlayListFoundException (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class NoPlayListFoundException

+
+
java.lang.Object +
java.lang.Throwable +
java.lang.Exception +
musichub.business.NoPlayListFoundException
+
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class NoPlayListFoundException +extends Exception
+
+
See Also:
+
Serialized Form
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      NoPlayListFoundException

      +
      public NoPlayListFoundException(String msg)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/PlayList.html b/target/site/apidocs/musichub/business/PlayList.html new file mode 100644 index 0000000..d681f94 --- /dev/null +++ b/target/site/apidocs/musichub/business/PlayList.html @@ -0,0 +1,215 @@ + + + + + +PlayList (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class PlayList

+
+
java.lang.Object +
musichub.business.PlayList
+
+
+
+
public class PlayList +extends Object
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      PlayList

      +
      public PlayList(String title, + String id, + ArrayList<UUID> elementUUIDs)
      +
      +
    • +
    • +
      +

      PlayList

      +
      public PlayList(String title)
      +
      +
    • +
    • +
      +

      PlayList

      +
      public PlayList(Element xmlElement)
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      addElement

      +
      public void addElement(UUID element)
      +
      +
    • +
    • +
      +

      getElements

      +
      public ArrayList<UUID> getElements()
      +
      +
    • +
    • +
      +

      getTitle

      +
      public String getTitle()
      +
      +
    • +
    • +
      +

      createXMLElement

      +
      public void createXMLElement(Document document, + Element parentElement)
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/Song.html b/target/site/apidocs/musichub/business/Song.html new file mode 100644 index 0000000..fb5a918 --- /dev/null +++ b/target/site/apidocs/musichub/business/Song.html @@ -0,0 +1,251 @@ + + + + + +Song (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class Song

+
+ +
+
+
public class Song +extends AudioElement
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    + +
    +
  • + +
  • +
    +

    Method Details

    + +
    +
  • +
+
+ +
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/class-use/Album.html b/target/site/apidocs/musichub/business/class-use/Album.html new file mode 100644 index 0000000..89a09b3 --- /dev/null +++ b/target/site/apidocs/musichub/business/class-use/Album.html @@ -0,0 +1,99 @@ + + + + + +Uses of Class musichub.business.Album (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
musichub.business.Album

+
+
Packages that use Album
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/class-use/AudioBook.html b/target/site/apidocs/musichub/business/class-use/AudioBook.html new file mode 100644 index 0000000..e911a56 --- /dev/null +++ b/target/site/apidocs/musichub/business/class-use/AudioBook.html @@ -0,0 +1,65 @@ + + + + + +Uses of Class musichub.business.AudioBook (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
musichub.business.AudioBook

+
+No usage of musichub.business.AudioBook
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/class-use/AudioElement.html b/target/site/apidocs/musichub/business/class-use/AudioElement.html new file mode 100644 index 0000000..67ffde5 --- /dev/null +++ b/target/site/apidocs/musichub/business/class-use/AudioElement.html @@ -0,0 +1,124 @@ + + + + + +Uses of Class musichub.business.AudioElement (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
musichub.business.AudioElement

+
+
Packages that use AudioElement
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/class-use/Category.html b/target/site/apidocs/musichub/business/class-use/Category.html new file mode 100644 index 0000000..3c43357 --- /dev/null +++ b/target/site/apidocs/musichub/business/class-use/Category.html @@ -0,0 +1,101 @@ + + + + + +Uses of Enum Class musichub.business.Category (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Enum Class
musichub.business.Category

+
+
Packages that use Category
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/class-use/Genre.html b/target/site/apidocs/musichub/business/class-use/Genre.html new file mode 100644 index 0000000..e07056b --- /dev/null +++ b/target/site/apidocs/musichub/business/class-use/Genre.html @@ -0,0 +1,98 @@ + + + + + +Uses of Enum Class musichub.business.Genre (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Enum Class
musichub.business.Genre

+
+
Packages that use Genre
+
+
Package
+
Description
+ +
 
+
+
+
    +
  • +
    +

    Uses of Genre in musichub.business

    +
    Methods in musichub.business that return Genre
    +
    +
    Modifier and Type
    +
    Method
    +
    Description
    +
    static Genre
    +
    Genre.valueOf​(String name)
    +
    +
    Returns the enum constant of this class with the specified name.
    +
    +
    static Genre[]
    +
    Genre.values()
    +
    +
    Returns an array containing the constants of this enum class, in +the order they are declared.
    +
    +
    +
    +
  • +
+
+
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/class-use/Language.html b/target/site/apidocs/musichub/business/class-use/Language.html new file mode 100644 index 0000000..446982a --- /dev/null +++ b/target/site/apidocs/musichub/business/class-use/Language.html @@ -0,0 +1,101 @@ + + + + + +Uses of Enum Class musichub.business.Language (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Enum Class
musichub.business.Language

+
+
Packages that use Language
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/class-use/MusicHub.html b/target/site/apidocs/musichub/business/class-use/MusicHub.html new file mode 100644 index 0000000..284de20 --- /dev/null +++ b/target/site/apidocs/musichub/business/class-use/MusicHub.html @@ -0,0 +1,65 @@ + + + + + +Uses of Class musichub.business.MusicHub (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
musichub.business.MusicHub

+
+No usage of musichub.business.MusicHub
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/class-use/NoAlbumFoundException.html b/target/site/apidocs/musichub/business/class-use/NoAlbumFoundException.html new file mode 100644 index 0000000..4fe2d48 --- /dev/null +++ b/target/site/apidocs/musichub/business/class-use/NoAlbumFoundException.html @@ -0,0 +1,101 @@ + + + + + +Uses of Class musichub.business.NoAlbumFoundException (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
musichub.business.NoAlbumFoundException

+
+
Packages that use NoAlbumFoundException
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/class-use/NoElementFoundException.html b/target/site/apidocs/musichub/business/class-use/NoElementFoundException.html new file mode 100644 index 0000000..18ab630 --- /dev/null +++ b/target/site/apidocs/musichub/business/class-use/NoElementFoundException.html @@ -0,0 +1,95 @@ + + + + + +Uses of Class musichub.business.NoElementFoundException (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
musichub.business.NoElementFoundException

+
+
Packages that use NoElementFoundException
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/class-use/NoPlayListFoundException.html b/target/site/apidocs/musichub/business/class-use/NoPlayListFoundException.html new file mode 100644 index 0000000..a1bdfd9 --- /dev/null +++ b/target/site/apidocs/musichub/business/class-use/NoPlayListFoundException.html @@ -0,0 +1,94 @@ + + + + + +Uses of Class musichub.business.NoPlayListFoundException (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
musichub.business.NoPlayListFoundException

+
+
Packages that use NoPlayListFoundException
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/class-use/PlayList.html b/target/site/apidocs/musichub/business/class-use/PlayList.html new file mode 100644 index 0000000..634e0d8 --- /dev/null +++ b/target/site/apidocs/musichub/business/class-use/PlayList.html @@ -0,0 +1,99 @@ + + + + + +Uses of Class musichub.business.PlayList (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
musichub.business.PlayList

+
+
Packages that use PlayList
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/class-use/Song.html b/target/site/apidocs/musichub/business/class-use/Song.html new file mode 100644 index 0000000..fb99612 --- /dev/null +++ b/target/site/apidocs/musichub/business/class-use/Song.html @@ -0,0 +1,90 @@ + + + + + +Uses of Class musichub.business.Song (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Class
musichub.business.Song

+
+
Packages that use Song
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/package-summary.html b/target/site/apidocs/musichub/business/package-summary.html new file mode 100644 index 0000000..5c16eb0 --- /dev/null +++ b/target/site/apidocs/musichub/business/package-summary.html @@ -0,0 +1,116 @@ + + + + + +musichub.business (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Package musichub.business

+
+
+
package musichub.business
+
+ +
+
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/package-tree.html b/target/site/apidocs/musichub/business/package-tree.html new file mode 100644 index 0000000..fd8432b --- /dev/null +++ b/target/site/apidocs/musichub/business/package-tree.html @@ -0,0 +1,114 @@ + + + + + +musichub.business Class Hierarchy (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package musichub.business

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+

Enum Class Hierarchy

+ +
+
+
+
+ +
+
+
+ + diff --git a/target/site/apidocs/musichub/business/package-use.html b/target/site/apidocs/musichub/business/package-use.html new file mode 100644 index 0000000..f00b71c --- /dev/null +++ b/target/site/apidocs/musichub/business/package-use.html @@ -0,0 +1,105 @@ + + + + + +Uses of Package musichub.business (spoteezer 0.1.0 API) + + + + + + + + + + + + + + + +
+ +
+
+
+

Uses of Package
musichub.business

+
+
Packages that use musichub.business
+
+
Package
+
Description
+ +
 
+
+
+ +
+
+ +
+
+ + -- cgit v1.2.3