Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CategorySortingMethod.java « util « notes « owncloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b399280f5343df957bcf8fda43f454cfa967240 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package it.niedermann.owncloud.notes.util;

public enum CategorySortingMethod {
    SORT_MODIFIED_DESC("MODIFIED DESC"),
    SORT_LEXICOGRAPHICAL_ASC("TITLE ASC");

    private String sorder;  // sorting method OrderBy for SQL

    /***
     * Constructor
     * @param orderby given sorting method OrderBy
     */
    CategorySortingMethod(String orderby) {
        this.sorder = orderby;
    }

    /***
     * Retrieve the sorting method id represented in database
     * @return the sorting method id for the enum item
     */
    public int getCSMID() {
        return this.ordinal();
    }

    /***
     * Retrieve the sorting method order for SQL
     * @return the sorting method order for the enum item
     */
    public String getSorder() {
        return this.sorder;
    }

    /***
     * Retrieve the corresponding enum value with given the index (ordinal)
     * @param index the index / ordinal of the corresponding enum value stored in DB
     * @return the corresponding enum item with the index (ordinal)
     */
    public static CategorySortingMethod getCSM(int index) {
        return CategorySortingMethod.values()[index];
    }
}