Enum MediaSort

  • All Implemented Interfaces:
    Serializable, Comparable<MediaSort>

    public enum MediaSort
    extends Enum<MediaSort>
    This enumeration defines functional sorting rules. All the rule defines can defined as not exposed to the user (displayed parameter).
    • Enum Constant Detail

      • CreationDateAsc

        public static final MediaSort CreationDateAsc
      • CreationDateDesc

        public static final MediaSort CreationDateDesc
      • Author

        public static final MediaSort Author
      • Definition

        public static final MediaSort Definition
    • Method Detail

      • values

        public static MediaSort[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (MediaSort c : MediaSort.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MediaSort 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
      • from

        public static MediaSort from​(String type)
        Gets the enum instance according to the specified type.
        Parameters:
        type -
        Returns:
      • getName

        public String getName()
      • isDisplayed

        public boolean isDisplayed()
        Indicates if the sorting rule can be displayed to the user.
        Returns:
        true if the rule can be displayed, false otherwise.
      • getBundleKey

        public String getBundleKey()
        Gets the bundle key in order to perform right label into the user language.
        Returns:
        the label bundle key.
      • perform

        public void perform​(List<Media> mediaList)
        Performs the sort of the specified list.
        Parameters:
        mediaList -