com.uwetrottmann.trakt5.enums.Extended Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trakt-java Show documentation
Show all versions of trakt-java Show documentation
trakt-java is a retrofit2 based wrapper around the trakt API v2.
package com.uwetrottmann.trakt5.enums;
/**
* By default, all methods will return minimal info for movies, shows, episodes, and users. Minimal info is typically
* all you need to match locally cached items and includes the title, year, and ids. However, you can request different
* extended levels of information.
*/
public enum Extended implements TraktEnum {
/** Complete info for an item. */
FULL("full"),
/** Only works with sync watchedShows. */
NOSEASONS("noseasons"),
/** Only works with seasons/summary */
EPISODES("episodes"),
/** Only works with seasons/summary */
FULLEPISODES("full,episodes");
private final String value;
Extended(String value) {
this.value = value;
}
@Override
public String toString() {
return value;
}
}