Enum JellyfinParameters

java.lang.Object
java.lang.Enum<JellyfinParameters>
com.lariflix.jemm.utils.JellyfinParameters
All Implemented Interfaces:
Serializable, Comparable<JellyfinParameters>, java.lang.constant.Constable

public enum JellyfinParameters extends Enum<JellyfinParameters>
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
  • Enum Constant Details

  • Method Details

    • values

      public static JellyfinParameters[] 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

      public static JellyfinParameters valueOf(String name)
      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 name
      NullPointerException - if the argument is null