Package com.lariflix.jemm.utils
Enum JellyfinParameters
- All Implemented Interfaces:
Serializable
,Comparable<JellyfinParameters>
,java.lang.constant.Constable
The JellyfimParameters enumeration is used to represent the parameters for a Jellyfin instance.
This enumeration contains a list of all possible parameters that can be used to configure a Jellyfin instance. Each parameter is represented as an enum constant.
JUST_ROOT_FOLDERS: This parameter is used to indicate that only root folders should be considered (Used for the root folders of the library).
FOLDERS_AND_SUBFOLDERS: This parameter is used to indicate that both folders and subfolders should be considered. (Used for the root folders of the library).
JUST_ITEMS: This parameter is used to indicate that only items should be considered. (Used for the items of the root-library).
JUST_SUBFOLDERS: This parameter is used to indicate that only subfolders should be considered. (Used for the items of the root-library)
- 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 JellyfinParameters
Returns the enum constant of this type with the specified name.static JellyfinParameters[]
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
-
JUST_ROOT_FOLDERS
-
FOLDERS_AND_SUBFOLDERS
-
JUST_ITEMS
-
JUST_SUBFOLDERS
-
DOWNLOADING_DATA
-
UPLOADING_DATA
-
-
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
-