diff --git a/apidocs/allclasses-frame.html b/apidocs/allclasses-frame.html index 4415507d4..e1abac9ed 100644 --- a/apidocs/allclasses-frame.html +++ b/apidocs/allclasses-frame.html @@ -2,13 +2,13 @@
- +This is for version 3 of the API as specified here: http://h
List<AlternativeTitle>getMovieAlternativeTitles(int movieId,
- String country)
+getMovieAlternativeTitles(int movieId,
+ String country,
+ String... appendToResponse)
This is for version 3 of the API as specified here: http://h
List<Person>getMovieCasts(int movieId)
+getMovieCasts(int movieId,
+ String... appendToResponse)
This is for version 3 of the API as specified here: http://h
List<Artwork>getMovieImages(int movieId,
- String language)
+getMovieImages(int movieId,
+ String language,
+ String... appendToResponse)
This is for version 3 of the API as specified here: http://h
MovieDbgetMovieInfo(int movieId,
- String language)
+getMovieInfo(int movieId,
+ String language,
+ String... appendToResponse)
This is for version 3 of the API as specified here: http://h
MovieDbgetMovieInfoImdb(String imdbId,
- String language)
+getMovieInfoImdb(String imdbId,
+ String language,
+ String... appendToResponse)
This is for version 3 of the API as specified here: http://h
List<Keyword>getMovieKeywords(int movieId)
+getMovieKeywords(int movieId,
+ String... appendToResponse)
This is for version 3 of the API as specified here: http://h
List<MovieList>getMovieLists(int movieId,
+getMovieLists(int movieId,
String language,
- int page)
+ int page,
+ String... appendToResponse)
Get the lists that the movie belongs to
@@ -384,8 +391,9 @@ The MovieDb API This is for version 3 of the API as specified here: http://h
List<ReleaseInfo>
-getMovieReleaseInfo(int movieId,
- String language)
+getMovieReleaseInfo(int movieId,
+ String language,
+ String... appendToResponse)
This method is used to retrieve all of the release and certification data we have for a specific movie.
@@ -393,8 +401,9 @@ The MovieDb API This is for version 3 of the API as specified here: http://h
List<Trailer>
-getMovieTrailers(int movieId,
- String language)
+getMovieTrailers(int movieId,
+ String language,
+ String... appendToResponse)
This method is used to retrieve all of the trailers for a particular movie.
@@ -402,7 +411,8 @@ The MovieDb API This is for version 3 of the API as specified here: http://h
List<Translation>
-getMovieTranslations(int movieId)
+getMovieTranslations(int movieId,
+ String... appendToResponse)
This method is used to retrieve a list of the available translations for a specific movie.
@@ -479,6 +489,17 @@ The MovieDb API This is for version 3 of the API as specified here: http://h
+ List<Reviews>
+getReviews(int movieId,
+ String language,
+ int page,
+ String... appendToResponse)
+
+
+
+
+
+
TokenSession
getSessionToken(TokenAuthorisation token)
@@ -488,9 +509,10 @@ The MovieDb API This is for version 3 of the API as specified here: http://h
List<MovieDb>
-getSimilarMovies(int movieId,
+getSimilarMovies(int movieId,
String language,
- int page)
+ int page,
+ String... appendToResponse)
The similar movies method will let you retrieve the similar movies for a particular movie.
@@ -820,11 +842,12 @@ public
-
+
getMovieInfo
public MovieDb getMovieInfo(int movieId,
- String language)
+ String language,
+ String... appendToResponse)
throws MovieDbException
- This method is used to retrieve all of the basic movie information.
@@ -839,11 +862,12 @@ public
+
getMovieInfoImdb
public MovieDb getMovieInfoImdb(String imdbId,
- String language)
+ String language,
+ String... appendToResponse)
throws MovieDbException
- This method is used to retrieve all of the basic movie information.
@@ -858,11 +882,12 @@ public
+
getMovieAlternativeTitles
public List<AlternativeTitle> getMovieAlternativeTitles(int movieId,
- String country)
+ String country,
+ String... appendToResponse)
throws MovieDbException
- This method is used to retrieve all of the alternative titles we have for a particular movie.
@@ -875,10 +900,11 @@ public
+
getMovieCasts
-public List<Person> getMovieCasts(int movieId)
+public List<Person> getMovieCasts(int movieId,
+ String... appendToResponse)
throws MovieDbException
- Get the cast information for a specific movie id.
@@ -893,11 +919,12 @@ public
+
getMovieImages
public List<Artwork> getMovieImages(int movieId,
- String language)
+ String language,
+ String... appendToResponse)
throws MovieDbException
- This method should be used when you’re wanting to retrieve all of the images for a particular movie.
@@ -910,10 +937,11 @@ public
+
getMovieKeywords
-public List<Keyword> getMovieKeywords(int movieId)
+public List<Keyword> getMovieKeywords(int movieId,
+ String... appendToResponse)
throws MovieDbException
- This method is used to retrieve all of the keywords that have been added to a particular movie.
@@ -928,11 +956,12 @@ public
+
getMovieReleaseInfo
public List<ReleaseInfo> getMovieReleaseInfo(int movieId,
- String language)
+ String language,
+ String... appendToResponse)
throws MovieDbException
- This method is used to retrieve all of the release and certification data we have for a specific movie.
@@ -945,11 +974,12 @@ public
+
getMovieTrailers
public List<Trailer> getMovieTrailers(int movieId,
- String language)
+ String language,
+ String... appendToResponse)
throws MovieDbException
- This method is used to retrieve all of the trailers for a particular movie.
@@ -964,10 +994,11 @@ public
+
getMovieTranslations
-public List<Translation> getMovieTranslations(int movieId)
+public List<Translation> getMovieTranslations(int movieId,
+ String... appendToResponse)
throws MovieDbException
- This method is used to retrieve a list of the available translations for a specific movie.
@@ -980,12 +1011,13 @@ public
+
getSimilarMovies
public List<MovieDb> getSimilarMovies(int movieId,
String language,
- int page)
+ int page,
+ String... appendToResponse)
throws MovieDbException
- The similar movies method will let you retrieve the similar movies for a particular movie.
@@ -1002,12 +1034,30 @@ public
+
+getReviews
+
+public List<Reviews> getReviews(int movieId,
+ String language,
+ int page,
+ String... appendToResponse)
+ throws MovieDbException
+
+
+
+- Throws:
+
MovieDbException
+
+
+
+
+
getMovieLists
public List<MovieList> getMovieLists(int movieId,
String language,
- int page)
+ int page,
+ String... appendToResponse)
throws MovieDbException
- Get the lists that the movie belongs to
diff --git a/apidocs/com/omertron/themoviedbapi/class-use/MovieDbException.MovieDbExceptionType.html b/apidocs/com/omertron/themoviedbapi/class-use/MovieDbException.MovieDbExceptionType.html
index 2968b8569..c586bd8c3 100644
--- a/apidocs/com/omertron/themoviedbapi/class-use/MovieDbException.MovieDbExceptionType.html
+++ b/apidocs/com/omertron/themoviedbapi/class-use/MovieDbException.MovieDbExceptionType.html
@@ -2,13 +2,13 @@
-
+
Uses of Class com.omertron.themoviedbapi.MovieDbException.MovieDbExceptionType (API-The MovieDB 3.5-SNAPSHOT API)
-
+
diff --git a/apidocs/com/omertron/themoviedbapi/class-use/MovieDbException.html b/apidocs/com/omertron/themoviedbapi/class-use/MovieDbException.html
index 5e33ad7b9..593865583 100644
--- a/apidocs/com/omertron/themoviedbapi/class-use/MovieDbException.html
+++ b/apidocs/com/omertron/themoviedbapi/class-use/MovieDbException.html
@@ -2,13 +2,13 @@
-
+
Uses of Class com.omertron.themoviedbapi.MovieDbException (API-The MovieDB 3.5-SNAPSHOT API)
-
+
@@ -242,8 +242,9 @@ Uses of
List<AlternativeTitle>
-TheMovieDbApi.getMovieAlternativeTitles(int movieId,
- String country)
+TheMovieDbApi.getMovieAlternativeTitles(int movieId,
+ String country,
+ String... appendToResponse)
This method is used to retrieve all of the alternative titles we have for a particular movie.
@@ -251,7 +252,8 @@ Uses of
List<Person>
-TheMovieDbApi.getMovieCasts(int movieId)
+TheMovieDbApi.getMovieCasts(int movieId,
+ String... appendToResponse)
Get the cast information for a specific movie id.
@@ -279,8 +281,9 @@ Uses of
List<Artwork>
-TheMovieDbApi.getMovieImages(int movieId,
- String language)
+TheMovieDbApi.getMovieImages(int movieId,
+ String language,
+ String... appendToResponse)
This method should be used when you’re wanting to retrieve all of the images for a particular movie.
@@ -288,8 +291,9 @@ Uses of
MovieDb
-TheMovieDbApi.getMovieInfo(int movieId,
- String language)
+TheMovieDbApi.getMovieInfo(int movieId,
+ String language,
+ String... appendToResponse)
This method is used to retrieve all of the basic movie information.
@@ -297,8 +301,9 @@ Uses of
MovieDb
-TheMovieDbApi.getMovieInfoImdb(String imdbId,
- String language)
+TheMovieDbApi.getMovieInfoImdb(String imdbId,
+ String language,
+ String... appendToResponse)
This method is used to retrieve all of the basic movie information.
@@ -306,7 +311,8 @@ Uses of
List<Keyword>
-TheMovieDbApi.getMovieKeywords(int movieId)
+TheMovieDbApi.getMovieKeywords(int movieId,
+ String... appendToResponse)
This method is used to retrieve all of the keywords that have been added to a particular movie.
@@ -314,9 +320,10 @@ Uses of
List<MovieList>
-TheMovieDbApi.getMovieLists(int movieId,
+TheMovieDbApi.getMovieLists(int movieId,
String language,
- int page)
+ int page,
+ String... appendToResponse)
Get the lists that the movie belongs to
@@ -324,8 +331,9 @@ Uses of
List<ReleaseInfo>
-TheMovieDbApi.getMovieReleaseInfo(int movieId,
- String language)
+TheMovieDbApi.getMovieReleaseInfo(int movieId,
+ String language,
+ String... appendToResponse)
This method is used to retrieve all of the release and certification data we have for a specific movie.
@@ -333,8 +341,9 @@ Uses of
List<Trailer>
-TheMovieDbApi.getMovieTrailers(int movieId,
- String language)
+TheMovieDbApi.getMovieTrailers(int movieId,
+ String language,
+ String... appendToResponse)
This method is used to retrieve all of the trailers for a particular movie.
@@ -342,7 +351,8 @@ Uses of
List<Translation>
-TheMovieDbApi.getMovieTranslations(int movieId)
+TheMovieDbApi.getMovieTranslations(int movieId,
+ String... appendToResponse)
This method is used to retrieve a list of the available translations for a specific movie.
@@ -419,6 +429,17 @@ Uses of
+ List<Reviews>
+TheMovieDbApi.getReviews(int movieId,
+ String language,
+ int page,
+ String... appendToResponse)
+
+
+
+
+
+
TokenSession
TheMovieDbApi.getSessionToken(TokenAuthorisation token)
@@ -428,9 +449,10 @@ Uses of
List<MovieDb>
-TheMovieDbApi.getSimilarMovies(int movieId,
+TheMovieDbApi.getSimilarMovies(int movieId,
String language,
- int page)
+ int page,
+ String... appendToResponse)
The similar movies method will let you retrieve the similar movies for a particular movie.
diff --git a/apidocs/com/omertron/themoviedbapi/class-use/TheMovieDbApi.html b/apidocs/com/omertron/themoviedbapi/class-use/TheMovieDbApi.html
index 4c8040863..b04012288 100644
--- a/apidocs/com/omertron/themoviedbapi/class-use/TheMovieDbApi.html
+++ b/apidocs/com/omertron/themoviedbapi/class-use/TheMovieDbApi.html
@@ -2,13 +2,13 @@
-
+
Uses of Class com.omertron.themoviedbapi.TheMovieDbApi (API-The MovieDB 3.5-SNAPSHOT API)
-
+
@@ -84,50 +84,7 @@ function windowTitle()
Uses of Class
com.omertron.themoviedbapi.TheMovieDbApi
-
-
-
-
-Packages that use TheMovieDbApi
-
-
-com.omertron.themoviedbapi.tools
-
-
-
-
-
-
-
-Uses of TheMovieDbApi in com.omertron.themoviedbapi.tools
-
-
-
-
-
-
-
-Constructors in com.omertron.themoviedbapi.tools with parameters of type TheMovieDbApi
-
-
-ApiUrl(TheMovieDbApi tmdb,
- String method)
-
-
- Constructor for the simple API URL method without a sub-method
-
-
-ApiUrl(TheMovieDbApi tmdb,
- String method,
- String submethod)
-
-
- Constructor for the API URL with a sub-method
-
-
-
+No usage of com.omertron.themoviedbapi.TheMovieDbApi
diff --git a/apidocs/com/omertron/themoviedbapi/model/AlternativeTitle.html b/apidocs/com/omertron/themoviedbapi/model/AlternativeTitle.html
index 72420627e..b00408744 100644
--- a/apidocs/com/omertron/themoviedbapi/model/AlternativeTitle.html
+++ b/apidocs/com/omertron/themoviedbapi/model/AlternativeTitle.html
@@ -2,13 +2,13 @@
-
+
AlternativeTitle (API-The MovieDB 3.5-SNAPSHOT API)
-
+
diff --git a/apidocs/com/omertron/themoviedbapi/model/Artwork.html b/apidocs/com/omertron/themoviedbapi/model/Artwork.html
index e980dec13..d150dda2d 100644
--- a/apidocs/com/omertron/themoviedbapi/model/Artwork.html
+++ b/apidocs/com/omertron/themoviedbapi/model/Artwork.html
@@ -2,13 +2,13 @@
-
+
Artwork (API-The MovieDB 3.5-SNAPSHOT API)
-
+
diff --git a/apidocs/com/omertron/themoviedbapi/model/ArtworkType.html b/apidocs/com/omertron/themoviedbapi/model/ArtworkType.html
index dfb1f6db5..90ad7f3fe 100644
--- a/apidocs/com/omertron/themoviedbapi/model/ArtworkType.html
+++ b/apidocs/com/omertron/themoviedbapi/model/ArtworkType.html
@@ -2,13 +2,13 @@
-
+
ArtworkType (API-The MovieDB 3.5-SNAPSHOT API)
-
+
diff --git a/apidocs/com/omertron/themoviedbapi/model/ChangeItem.html b/apidocs/com/omertron/themoviedbapi/model/ChangeItem.html
index b68b7e60d..db980c462 100644
--- a/apidocs/com/omertron/themoviedbapi/model/ChangeItem.html
+++ b/apidocs/com/omertron/themoviedbapi/model/ChangeItem.html
@@ -2,13 +2,13 @@
-
+
ChangeItem (API-The MovieDB 3.5-SNAPSHOT API)
-
+
diff --git a/apidocs/com/omertron/themoviedbapi/model/ChangeValue.html b/apidocs/com/omertron/themoviedbapi/model/ChangeValue.html
index 930bfbbdf..470882c16 100644
--- a/apidocs/com/omertron/themoviedbapi/model/ChangeValue.html
+++ b/apidocs/com/omertron/themoviedbapi/model/ChangeValue.html
@@ -2,13 +2,13 @@
-
+
ChangeValue (API-The MovieDB 3.5-SNAPSHOT API)
-
+
diff --git a/apidocs/com/omertron/themoviedbapi/model/Collection.html b/apidocs/com/omertron/themoviedbapi/model/Collection.html
index 1c7aa0ac8..b7f37a653 100644
--- a/apidocs/com/omertron/themoviedbapi/model/Collection.html
+++ b/apidocs/com/omertron/themoviedbapi/model/Collection.html
@@ -2,13 +2,13 @@
-
+
Collection (API-The MovieDB 3.5-SNAPSHOT API)
-
+
diff --git a/apidocs/com/omertron/themoviedbapi/model/CollectionInfo.html b/apidocs/com/omertron/themoviedbapi/model/CollectionInfo.html
index 10335de3d..ff3af993c 100644
--- a/apidocs/com/omertron/themoviedbapi/model/CollectionInfo.html
+++ b/apidocs/com/omertron/themoviedbapi/model/CollectionInfo.html
@@ -2,13 +2,13 @@
-
+
CollectionInfo (API-The MovieDB 3.5-SNAPSHOT API)
-
+
diff --git a/apidocs/com/omertron/themoviedbapi/model/Company.html b/apidocs/com/omertron/themoviedbapi/model/Company.html
index b492a297f..adec165f7 100644
--- a/apidocs/com/omertron/themoviedbapi/model/Company.html
+++ b/apidocs/com/omertron/themoviedbapi/model/Company.html
@@ -2,13 +2,13 @@
-
+
Company (API-The MovieDB 3.5-SNAPSHOT API)
-
+
diff --git a/apidocs/com/omertron/themoviedbapi/model/Genre.html b/apidocs/com/omertron/themoviedbapi/model/Genre.html
index 198a8b005..e75886e45 100644
--- a/apidocs/com/omertron/themoviedbapi/model/Genre.html
+++ b/apidocs/com/omertron/themoviedbapi/model/Genre.html
@@ -2,13 +2,13 @@
-
+
Genre (API-The MovieDB 3.5-SNAPSHOT API)
-
+
diff --git a/apidocs/com/omertron/themoviedbapi/model/Keyword.html b/apidocs/com/omertron/themoviedbapi/model/Keyword.html
index 51e63ca30..ca577190e 100644
--- a/apidocs/com/omertron/themoviedbapi/model/Keyword.html
+++ b/apidocs/com/omertron/themoviedbapi/model/Keyword.html
@@ -2,13 +2,13 @@
-
+
Keyword (API-The MovieDB 3.5-SNAPSHOT API)
-
+
diff --git a/apidocs/com/omertron/themoviedbapi/model/KeywordMovie.html b/apidocs/com/omertron/themoviedbapi/model/KeywordMovie.html
index 82ce0e462..7679d38f3 100644
--- a/apidocs/com/omertron/themoviedbapi/model/KeywordMovie.html
+++ b/apidocs/com/omertron/themoviedbapi/model/KeywordMovie.html
@@ -2,13 +2,13 @@
-
+
KeywordMovie (API-The MovieDB 3.5-SNAPSHOT API)
-
+
diff --git a/apidocs/com/omertron/themoviedbapi/model/Language.html b/apidocs/com/omertron/themoviedbapi/model/Language.html
index f9400c0b2..2f49fd8e4 100644
--- a/apidocs/com/omertron/themoviedbapi/model/Language.html
+++ b/apidocs/com/omertron/themoviedbapi/model/Language.html
@@ -2,13 +2,13 @@
-
+
Language (API-The MovieDB 3.5-SNAPSHOT API)
-
+
diff --git a/apidocs/com/omertron/themoviedbapi/model/MovieChanges.html b/apidocs/com/omertron/themoviedbapi/model/MovieChanges.html
index f699ff59d..f1f1e4e86 100644
--- a/apidocs/com/omertron/themoviedbapi/model/MovieChanges.html
+++ b/apidocs/com/omertron/themoviedbapi/model/MovieChanges.html
@@ -2,13 +2,13 @@
-
+
MovieChanges (API-The MovieDB 3.5-SNAPSHOT API)
-
+
diff --git a/apidocs/com/omertron/themoviedbapi/model/MovieDb.html b/apidocs/com/omertron/themoviedbapi/model/MovieDb.html
index 9c1de6440..62329b762 100644
--- a/apidocs/com/omertron/themoviedbapi/model/MovieDb.html
+++ b/apidocs/com/omertron/themoviedbapi/model/MovieDb.html
@@ -2,13 +2,13 @@
-
+
MovieDb (API-The MovieDB 3.5-SNAPSHOT API)
-
+
@@ -146,6 +146,14 @@ Movie Bean
boolean
equals(Object obj)
+
+
+
+
+
+ List<AlternativeTitle>
+getAlternativeTitles()
+
@@ -170,6 +178,22 @@ Movie Bean
long
getBudget()
+
+
+
+
+
+ List<PersonCast>
+getCast()
+
+
+
+
+
+
+ List<PersonCrew>
+getCrew()
+
@@ -194,6 +218,14 @@ Movie Bean
intgetId()
+ List<Artwork>getImages()
+
String
getImdbID()
+ List<Keyword>getKeywords()
+
+ List<MovieList>getLists()
+
String
getReleaseDate()
+ List<ReleaseInfo>getReleases()
+
long
getRevenue()
+ List<Reviews>getReviews()
+
int
getRuntime()
+ List<MovieDb>getSimilarMovies()
+
String
getTitle()
+ List<Trailer>getTrailers()
+
+ List<Translation>getTranslations()
+
void
setAdult(boolean adult)
+ voidsetAlternativeTitles(WrapperAlternativeTitles alternativeTitles)
+
void
setBudget(long budget)
+ voidsetCasts(WrapperMovieCasts casts)
+
void
setId(int id)
+ voidsetImages(WrapperImages images)
+
void
setImdbID(String imdbID)
+ voidsetKeywords(WrapperMovieKeywords keywords)
+
+ voidsetLists(WrapperMovieList lists)
+
void
setReleaseDate(String releaseDate)
+ voidsetReleases(WrapperReleaseInfo releases)
+
void
setRevenue(long revenue)
+ voidsetReviews(WrapperReviews reviews)
+
void
setRuntime(int runtime)
+ voidsetSimilarMovies(WrapperMovie similarMovies)
+
void
setTitle(String title)
+ voidsetTrailers(WrapperTrailers trailers)
+
+ voidsetTranslations(WrapperTranslations translations)
+
+public List<AlternativeTitle> getAlternativeTitles()+
+public List<PersonCast> getCast()+
+public List<PersonCrew> getCrew()+
+public List<Artwork> getImages()+
+public List<Keyword> getKeywords()+
+public List<ReleaseInfo> getReleases()+
+public List<Trailer> getTrailers()+
+public List<Translation> getTranslations()+
+public List<MovieDb> getSimilarMovies()+
+public List<MovieList> getLists()+
+public List<Reviews> getReviews()+
+public void setAlternativeTitles(WrapperAlternativeTitles alternativeTitles)+
+public void setCasts(WrapperMovieCasts casts)+
+public void setImages(WrapperImages images)+
+public void setKeywords(WrapperMovieKeywords keywords)+
+public void setReleases(WrapperReleaseInfo releases)+
+public void setTrailers(WrapperTrailers trailers)+
+public void setTranslations(WrapperTranslations translations)+
+public void setSimilarMovies(WrapperMovie similarMovies)+
+public void setLists(WrapperMovieList lists)+
+public void setReviews(WrapperReviews reviews)+
diff --git a/apidocs/com/omertron/themoviedbapi/model/MovieDbList.html b/apidocs/com/omertron/themoviedbapi/model/MovieDbList.html index 241f9041b..6eb72d234 100644 --- a/apidocs/com/omertron/themoviedbapi/model/MovieDbList.html +++ b/apidocs/com/omertron/themoviedbapi/model/MovieDbList.html @@ -2,13 +2,13 @@ - +MovieDbList (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/MovieList.html b/apidocs/com/omertron/themoviedbapi/model/MovieList.html index c84700be1..88fc3dec2 100644 --- a/apidocs/com/omertron/themoviedbapi/model/MovieList.html +++ b/apidocs/com/omertron/themoviedbapi/model/MovieList.html @@ -2,13 +2,13 @@ - +MovieList (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/Person.html b/apidocs/com/omertron/themoviedbapi/model/Person.html index 4e3e8bbcd..87bc6b750 100644 --- a/apidocs/com/omertron/themoviedbapi/model/Person.html +++ b/apidocs/com/omertron/themoviedbapi/model/Person.html @@ -2,13 +2,13 @@ - +Person (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/PersonCast.html b/apidocs/com/omertron/themoviedbapi/model/PersonCast.html index 5ee90bb38..33ff5bd49 100644 --- a/apidocs/com/omertron/themoviedbapi/model/PersonCast.html +++ b/apidocs/com/omertron/themoviedbapi/model/PersonCast.html @@ -2,13 +2,13 @@ - +PersonCast (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/PersonCredit.html b/apidocs/com/omertron/themoviedbapi/model/PersonCredit.html index 84a3d1127..4f51bc3b9 100644 --- a/apidocs/com/omertron/themoviedbapi/model/PersonCredit.html +++ b/apidocs/com/omertron/themoviedbapi/model/PersonCredit.html @@ -2,13 +2,13 @@ - +PersonCredit (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/PersonCrew.html b/apidocs/com/omertron/themoviedbapi/model/PersonCrew.html index c99563b1a..ef86e1d86 100644 --- a/apidocs/com/omertron/themoviedbapi/model/PersonCrew.html +++ b/apidocs/com/omertron/themoviedbapi/model/PersonCrew.html @@ -2,13 +2,13 @@ - +PersonCrew (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/PersonType.html b/apidocs/com/omertron/themoviedbapi/model/PersonType.html index f5ee7bc08..0bc0b01fc 100644 --- a/apidocs/com/omertron/themoviedbapi/model/PersonType.html +++ b/apidocs/com/omertron/themoviedbapi/model/PersonType.html @@ -2,13 +2,13 @@ - +PersonType (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/ProductionCompany.html b/apidocs/com/omertron/themoviedbapi/model/ProductionCompany.html index f8e5cd637..8787462fd 100644 --- a/apidocs/com/omertron/themoviedbapi/model/ProductionCompany.html +++ b/apidocs/com/omertron/themoviedbapi/model/ProductionCompany.html @@ -2,13 +2,13 @@ - +ProductionCompany (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/ProductionCountry.html b/apidocs/com/omertron/themoviedbapi/model/ProductionCountry.html index 656ca17bb..79ca0c755 100644 --- a/apidocs/com/omertron/themoviedbapi/model/ProductionCountry.html +++ b/apidocs/com/omertron/themoviedbapi/model/ProductionCountry.html @@ -2,13 +2,13 @@ - +ProductionCountry (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/ReleaseInfo.html b/apidocs/com/omertron/themoviedbapi/model/ReleaseInfo.html index d8fa5741e..55f59f303 100644 --- a/apidocs/com/omertron/themoviedbapi/model/ReleaseInfo.html +++ b/apidocs/com/omertron/themoviedbapi/model/ReleaseInfo.html @@ -2,13 +2,13 @@ - +ReleaseInfo (API-The MovieDB 3.5-SNAPSHOT API) - + @@ -57,7 +57,7 @@ function windowTitle()+ PREV CLASS - NEXT CLASS + NEXT CLASSFRAMES NO FRAMES @@ -431,7 +431,7 @@ public PREV CLASS - NEXT CLASS + NEXT CLASSFRAMES NO FRAMES diff --git a/apidocs/com/omertron/themoviedbapi/model/Reviews.html b/apidocs/com/omertron/themoviedbapi/model/Reviews.html new file mode 100644 index 000000000..28764f042 --- /dev/null +++ b/apidocs/com/omertron/themoviedbapi/model/Reviews.html @@ -0,0 +1,443 @@ + + + + + + + +Reviews (API-The MovieDB 3.5-SNAPSHOT API) + + + + + + + + + + + + +
+ + + + + ++
+ + + ++ + ++ + ++
++ +Overview +Package +Class +Use +Tree +Deprecated +Index +Help ++ + ++ ++ PREV CLASS + NEXT CLASS ++ FRAMES + NO FRAMES + + + + + ++ ++ SUMMARY: NESTED | FIELD | CONSTR | METHOD ++DETAIL: FIELD | CONSTR | METHOD +
+ ++ +com.omertron.themoviedbapi.model +
+
+Class Reviews+java.lang.Object ++com.omertron.themoviedbapi.model.Reviews +
+
+- All Implemented Interfaces:
- Serializable
+
++
+ + + public class Reviews- extends Object
- implements Serializable
+
+
+- Author:
+- Stuart
+- See Also:
- Serialized Form
+ ++
+ + + + ++ ++Constructor Summary ++ ++ Reviews()+ +
++
+ ++ ++Method Summary ++ ++ +String+ getAuthor()+ +
++ ++ +String+ getContent()+ +
++ ++ +String+ getId()+ +
++ ++ +String+ getUrl()+ +
++ ++ +void+ handleUnknown(String key, + Object value)+ +
+ Handle unknown properties and print a message+ ++ +void+ setAuthor(String author)+ +
++ ++ +void+ setContent(String content)+ +
++ ++ +void+ setId(String id)+ +
++ ++ +void+ setUrl(String url)+ +
++
+ ++ +Methods inherited from class java.lang.Object ++ ++ clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait+
+ ++ ++Constructor Detail ++Reviews
++public Reviews()++
+ + + + ++
+ ++ ++Method Detail ++getId
++public String getId()++
+- +
+
+- +
+
+
+ ++getAuthor
++public String getAuthor()++
+- +
+
+- +
+
+
+ ++getContent
++public String getContent()++
+- +
+
+- +
+
+
+ ++getUrl
++public String getUrl()++
+- +
+
+- +
+
+
+ ++setId
++public void setId(String id)++
+- +
+
+- +
+
+
+ ++setAuthor
++public void setAuthor(String author)++
+- +
+
+- +
+
+
+ ++setContent
++public void setContent(String content)++
+- +
+
+- +
+
+
+ ++setUrl
++public void setUrl(String url)++
+- +
+
+- +
+
+
+ ++handleUnknown
++public void handleUnknown(String key, + Object value)++
+ +- Handle unknown properties and print a message +
+
- +
+
+- +
+
+- Parameters:
key-value-
+ + + + + ++
+ + + ++ + ++ + ++
++ +Overview +Package +Class +Use +Tree +Deprecated +Index +Help ++ + ++ ++ PREV CLASS + NEXT CLASS ++ FRAMES + NO FRAMES + + + + + ++ ++ SUMMARY: NESTED | FIELD | CONSTR | METHOD ++DETAIL: FIELD | CONSTR | METHOD +
+Copyright © 2012-2013. All Rights Reserved. + + diff --git a/apidocs/com/omertron/themoviedbapi/model/StatusCode.html b/apidocs/com/omertron/themoviedbapi/model/StatusCode.html index e122d6928..9310147cf 100644 --- a/apidocs/com/omertron/themoviedbapi/model/StatusCode.html +++ b/apidocs/com/omertron/themoviedbapi/model/StatusCode.html @@ -2,13 +2,13 @@ - +StatusCode (API-The MovieDB 3.5-SNAPSHOT API) - + @@ -56,7 +56,7 @@ function windowTitle()+ - PREV CLASS + PREV CLASS NEXT CLASS FRAMES @@ -342,7 +342,7 @@ public - PREV CLASS + PREV CLASS NEXT CLASS FRAMES diff --git a/apidocs/com/omertron/themoviedbapi/model/TmdbConfiguration.html b/apidocs/com/omertron/themoviedbapi/model/TmdbConfiguration.html index 83f835019..08ef609b7 100644 --- a/apidocs/com/omertron/themoviedbapi/model/TmdbConfiguration.html +++ b/apidocs/com/omertron/themoviedbapi/model/TmdbConfiguration.html @@ -2,13 +2,13 @@ - + TmdbConfiguration (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/TokenAuthorisation.html b/apidocs/com/omertron/themoviedbapi/model/TokenAuthorisation.html index d8e64a651..b38fe836d 100644 --- a/apidocs/com/omertron/themoviedbapi/model/TokenAuthorisation.html +++ b/apidocs/com/omertron/themoviedbapi/model/TokenAuthorisation.html @@ -2,13 +2,13 @@ - +TokenAuthorisation (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/TokenSession.html b/apidocs/com/omertron/themoviedbapi/model/TokenSession.html index 5357f67e7..6ace7292e 100644 --- a/apidocs/com/omertron/themoviedbapi/model/TokenSession.html +++ b/apidocs/com/omertron/themoviedbapi/model/TokenSession.html @@ -2,13 +2,13 @@ - +TokenSession (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/Trailer.html b/apidocs/com/omertron/themoviedbapi/model/Trailer.html index 80e044fc8..5f7e84814 100644 --- a/apidocs/com/omertron/themoviedbapi/model/Trailer.html +++ b/apidocs/com/omertron/themoviedbapi/model/Trailer.html @@ -2,13 +2,13 @@ - +Trailer (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/Translation.html b/apidocs/com/omertron/themoviedbapi/model/Translation.html index e30f6426e..267f5b2d1 100644 --- a/apidocs/com/omertron/themoviedbapi/model/Translation.html +++ b/apidocs/com/omertron/themoviedbapi/model/Translation.html @@ -2,13 +2,13 @@ - +Translation (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/class-use/AlternativeTitle.html b/apidocs/com/omertron/themoviedbapi/model/class-use/AlternativeTitle.html index 2dbec2abb..f7fcdd504 100644 --- a/apidocs/com/omertron/themoviedbapi/model/class-use/AlternativeTitle.html +++ b/apidocs/com/omertron/themoviedbapi/model/class-use/AlternativeTitle.html @@ -2,13 +2,13 @@ - +Uses of Class com.omertron.themoviedbapi.model.AlternativeTitle (API-The MovieDB 3.5-SNAPSHOT API) - + @@ -95,6 +95,10 @@ Packages that use +com.omertron.themoviedbapi.model ++ @@ -118,8 +122,9 @@ Uses of com.omertron.themoviedbapi.wrapper - List<AlternativeTitle>TheMovieDbApi.getMovieAlternativeTitles(int movieId, - String country)+@@ -127,6 +132,31 @@ Uses of + TheMovieDbApi.getMovieAlternativeTitles(int movieId, + String country, + String... appendToResponse)
This method is used to retrieve all of the alternative titles we have for a particular movie.+
+ ++ ++Uses of AlternativeTitle in com.omertron.themoviedbapi.model ++ +
+
+ ++ +Methods in com.omertron.themoviedbapi.model that return types with arguments of type AlternativeTitle ++ ++ +List<AlternativeTitle>+ MovieDb.getAlternativeTitles()+ +
+
diff --git a/apidocs/com/omertron/themoviedbapi/model/class-use/Artwork.html b/apidocs/com/omertron/themoviedbapi/model/class-use/Artwork.html index 1769293bb..027f0efde 100644 --- a/apidocs/com/omertron/themoviedbapi/model/class-use/Artwork.html +++ b/apidocs/com/omertron/themoviedbapi/model/class-use/Artwork.html @@ -2,13 +2,13 @@ - + Uses of Class com.omertron.themoviedbapi.model.Artwork (API-The MovieDB 3.5-SNAPSHOT API) - + @@ -131,8 +131,9 @@ Uses of- List<Artwork>TheMovieDbApi.getMovieImages(int movieId, - String language)+@@ -182,6 +183,22 @@ Uses of + TheMovieDbApi.getMovieImages(int movieId, + String language, + String... appendToResponse)
This method should be used when you’re wanting to retrieve all of the images for a particular movie.+
+ ++ +Methods in com.omertron.themoviedbapi.model that return types with arguments of type Artwork ++ ++ +List<Artwork>+ MovieDb.getImages()+ +
++
+ Methods in com.omertron.themoviedbapi.model with parameters of type Artwork @@ -222,6 +239,14 @@ Uses of+ List<Artwork>+ WrapperImages.getAll(ArtworkType... artworkList)+ +
+ Return a list of all the artwork with their types.+ ++ List<Artwork>WrapperImages.getBackdrops()
diff --git a/apidocs/com/omertron/themoviedbapi/model/class-use/ArtworkType.html b/apidocs/com/omertron/themoviedbapi/model/class-use/ArtworkType.html index 32dc1cbb1..6c8ed81b5 100644 --- a/apidocs/com/omertron/themoviedbapi/model/class-use/ArtworkType.html +++ b/apidocs/com/omertron/themoviedbapi/model/class-use/ArtworkType.html @@ -2,13 +2,13 @@ - +Uses of Class com.omertron.themoviedbapi.model.ArtworkType (API-The MovieDB 3.5-SNAPSHOT API) - + @@ -94,6 +94,10 @@ Packages that use com.omertron.themoviedbapi.model+ com.omertron.themoviedbapi.wrapper ++ @@ -155,6 +159,31 @@ the order they are declared.
+
+ ++ ++Uses of ArtworkType in com.omertron.themoviedbapi.wrapper ++ +
+
+ ++ +Methods in com.omertron.themoviedbapi.wrapper with parameters of type ArtworkType ++ ++ +List<Artwork>+ WrapperImages.getAll(ArtworkType... artworkList)+ +
+ Return a list of all the artwork with their types.
diff --git a/apidocs/com/omertron/themoviedbapi/model/class-use/ChangeItem.html b/apidocs/com/omertron/themoviedbapi/model/class-use/ChangeItem.html index 4df7a40d5..8f7a36a5e 100644 --- a/apidocs/com/omertron/themoviedbapi/model/class-use/ChangeItem.html +++ b/apidocs/com/omertron/themoviedbapi/model/class-use/ChangeItem.html @@ -2,13 +2,13 @@ - +Uses of Class com.omertron.themoviedbapi.model.ChangeItem (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/class-use/ChangeValue.html b/apidocs/com/omertron/themoviedbapi/model/class-use/ChangeValue.html index c44ac380f..37eba36f4 100644 --- a/apidocs/com/omertron/themoviedbapi/model/class-use/ChangeValue.html +++ b/apidocs/com/omertron/themoviedbapi/model/class-use/ChangeValue.html @@ -2,13 +2,13 @@ - +Uses of Class com.omertron.themoviedbapi.model.ChangeValue (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/class-use/Collection.html b/apidocs/com/omertron/themoviedbapi/model/class-use/Collection.html index 0d679b91a..20d3caea6 100644 --- a/apidocs/com/omertron/themoviedbapi/model/class-use/Collection.html +++ b/apidocs/com/omertron/themoviedbapi/model/class-use/Collection.html @@ -2,13 +2,13 @@ - +Uses of Class com.omertron.themoviedbapi.model.Collection (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/class-use/CollectionInfo.html b/apidocs/com/omertron/themoviedbapi/model/class-use/CollectionInfo.html index f4ef09c23..e448c17ef 100644 --- a/apidocs/com/omertron/themoviedbapi/model/class-use/CollectionInfo.html +++ b/apidocs/com/omertron/themoviedbapi/model/class-use/CollectionInfo.html @@ -2,13 +2,13 @@ - +Uses of Class com.omertron.themoviedbapi.model.CollectionInfo (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/class-use/Company.html b/apidocs/com/omertron/themoviedbapi/model/class-use/Company.html index e7cf131ba..3ab752209 100644 --- a/apidocs/com/omertron/themoviedbapi/model/class-use/Company.html +++ b/apidocs/com/omertron/themoviedbapi/model/class-use/Company.html @@ -2,13 +2,13 @@ - +Uses of Class com.omertron.themoviedbapi.model.Company (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/class-use/Genre.html b/apidocs/com/omertron/themoviedbapi/model/class-use/Genre.html index 5bfbd5be4..d9cce4e9d 100644 --- a/apidocs/com/omertron/themoviedbapi/model/class-use/Genre.html +++ b/apidocs/com/omertron/themoviedbapi/model/class-use/Genre.html @@ -2,13 +2,13 @@ - +Uses of Class com.omertron.themoviedbapi.model.Genre (API-The MovieDB 3.5-SNAPSHOT API) - + diff --git a/apidocs/com/omertron/themoviedbapi/model/class-use/Keyword.html b/apidocs/com/omertron/themoviedbapi/model/class-use/Keyword.html index 2d1df8700..68dfccb84 100644 --- a/apidocs/com/omertron/themoviedbapi/model/class-use/Keyword.html +++ b/apidocs/com/omertron/themoviedbapi/model/class-use/Keyword.html @@ -2,13 +2,13 @@ - +Uses of Class com.omertron.themoviedbapi.model.Keyword (API-The MovieDB 3.5-SNAPSHOT API) - + @@ -95,6 +95,10 @@ Packages that use +com.omertron.themoviedbapi.model ++ @@ -134,7 +138,8 @@ Uses of com.omertron.themoviedbapi.wrapper - List<Keyword>TheMovieDbApi.getMovieKeywords(int movieId)+@@ -151,6 +156,31 @@ Uses of TheMovieDbApi.getMovieKeywords(int movieId, + String... appendToResponse)
This method is used to retrieve all of the keywords that have been added to a particular movie.
| +Uses of Keyword in com.omertron.themoviedbapi.model | +
|---|
+ +
| Methods in com.omertron.themoviedbapi.model that return types with arguments of type Keyword | +|
|---|---|
+ List<Keyword> |
+MovieDb.getKeywords()
+
++ |
+
MovieDb |
-TheMovieDbApi.getMovieInfo(int movieId,
- String language)
+ | TheMovieDbApi.getMovieInfo(int movieId,
+ String language,
+ String... appendToResponse)
This method is used to retrieve all of the basic movie information. |
@@ -139,8 +140,9 @@ Uses of
MovieDb |
-TheMovieDbApi.getMovieInfoImdb(String imdbId,
- String language)
+ | TheMovieDbApi.getMovieInfoImdb(String imdbId,
+ String language,
+ String... appendToResponse)
This method is used to retrieve all of the basic movie information. |
@@ -205,9 +207,10 @@ Uses of
List<MovieDb> |
-TheMovieDbApi.getSimilarMovies(int movieId,
+ |
MovieDbList.getItems()
++ |
+|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
+ List<MovieDb> |
+MovieDb.getSimilarMovies()
+
|
com.omertron.themoviedbapi.model | ++ + | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| com.omertron.themoviedbapi.wrapper |
List<MovieList> |
-TheMovieDbApi.getMovieLists(int movieId,
+ | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||