Package com.lariflix.jemm.utils
Enum JellyfinReportTypes
- All Implemented Interfaces:
Serializable
,Comparable<JellyfinReportTypes>
,java.lang.constant.Constable
The JellyfinReportTypes enumeration is used to represent the types of reports in the Jellyfin application.
This enumeration contains a list of all possible report types that can be generated in the Jellyfin application.
Each report type is represented as an enum constant.
INVENTORY_BASIC: This report type represents a basic inventory report.
INVENTORY_FULL: This report type represents a full inventory report.
GENRES_BASIC: This report type represents a basic genres report.
GENRES_FULL: This report type represents a full genres report.
PEOPLE_BASIC: This report type represents a basic people report.
PEOPLE_FULL: This report type represents a full people report.
TAGS_BASIC: This report type represents a basic tags report.
TAGS_FULL: This report type represents a full tags report.
YEARS_FULL: This report type represents a full years report.
STUDIOS_BASIC: This report type represents a basic studios report.
STUDIOS_FULL: This report type represents a full studios report.
- Author:
- Cesar Bianchi
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic void
Constructor for the JellyfinReportTypes enumeration.static JellyfinReportTypes
Returns the enum constant of this type with the specified name.static JellyfinReportTypes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
INVENTORY_BASIC
-
INVENTORY_FULL
-
GENRES_BASIC
-
GENRES_FULL
-
PEOPLE_BASIC
-
PEOPLE_FULL
-
TAGS_BASIC
-
TAGS_FULL
-
YEARS_FULL
-
STUDIOS_BASIC
-
STUDIOS_FULL
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
JellyfinReportTypes
public static void JellyfinReportTypes()Constructor for the JellyfinReportTypes enumeration. This is a no-argument constructor that initializes a new instance of the JellyfinReportTypes enumeration. It doesn't perform any specific actions.- Since:
- 1.1
-