All Downloads are FREE. Search and download functionalities are using the official Maven repository.

info.movito.themoviedbapi.tools.model.time.TimeWindow Maven / Gradle / Ivy

Go to download

A Java-wrapper around the JSON API provided by TMdB, which is an open database for movie and tv content.

The newest version!
package info.movito.themoviedbapi.tools.model.time;

import lombok.AllArgsConstructor;
import lombok.Getter;

/**
 * Time window for trending media.
 */
@AllArgsConstructor
@Getter
public enum TimeWindow {
    DAY("day"),
    WEEK("week");

    private final String value;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy