mirror of
https://github.com/LukeHagar/plexjava.git
synced 2025-12-07 04:20:49 +00:00
49 lines
1.2 KiB
Java
49 lines
1.2 KiB
Java
/*
|
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
*/
|
|
package dev.plexapi.sdk.models.operations;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonValue;
|
|
import java.lang.String;
|
|
import java.util.Objects;
|
|
import java.util.Optional;
|
|
|
|
/**
|
|
* GetSearchAllLibrariesShowOrdering
|
|
*
|
|
* <p>Setting that indicates the episode ordering for the show.
|
|
* None = Library default,
|
|
* tmdbAiring = The Movie Database (Aired),
|
|
* aired = TheTVDB (Aired),
|
|
* dvd = TheTVDB (DVD),
|
|
* absolute = TheTVDB (Absolute)).
|
|
*/
|
|
public enum GetSearchAllLibrariesShowOrdering {
|
|
None("None"),
|
|
TmdbAiring("tmdbAiring"),
|
|
TvdbAired("aired"),
|
|
TvdbDvd("dvd"),
|
|
TvdbAbsolute("absolute");
|
|
|
|
@JsonValue
|
|
private final String value;
|
|
|
|
private GetSearchAllLibrariesShowOrdering(String value) {
|
|
this.value = value;
|
|
}
|
|
|
|
public String value() {
|
|
return value;
|
|
}
|
|
|
|
public static Optional<GetSearchAllLibrariesShowOrdering> fromValue(String value) {
|
|
for (GetSearchAllLibrariesShowOrdering o: GetSearchAllLibrariesShowOrdering.values()) {
|
|
if (Objects.deepEquals(o.value, value)) {
|
|
return Optional.of(o);
|
|
}
|
|
}
|
|
return Optional.empty();
|
|
}
|
|
}
|
|
|