Enum AssetQueryFilterSortType

    • Enum Constant Detail

      • RELEVANCE

        @SerializedName("RELEVANCE")
        public static final AssetQueryFilterSortType RELEVANCE
        Sorts the results by the relevance (query score).
      • NEWEST

        @SerializedName("NEWEST")
        public static final AssetQueryFilterSortType NEWEST
        Sorts the results by the newest `Assets`.
      • OLDEST

        @SerializedName("OLDEST")
        public static final AssetQueryFilterSortType OLDEST
        Sorts the results by the oldest `Assets`.
      • TITLE_ASCENDING

        @SerializedName("TITLE_ASCENDING")
        public static final AssetQueryFilterSortType TITLE_ASCENDING
        Sorts the results ascending by the title of the `Assets`.
      • TITLE_DESCENDING

        @SerializedName("TITLE_DESCENDING")
        public static final AssetQueryFilterSortType TITLE_DESCENDING
        sorts the results descending by the title of the `Assets`.
    • Method Detail

      • values

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