aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/com/pinapelz/vtuber/Sort.java
blob: b0d8b4ab61187d0351acbf32cdee68365f8ba6ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.pinapelz.vtuber;

public enum Sort {
    NEWEST("newest"),
    START_SCHEDULED("start_scheduled"),
    START_ACTUAL("start_actual"),
    END_ACTUAL("end_actual");

    private final String value;
    Sort(String value) {
        this.value = value;
    }

    @Override
    public String toString() {
        return value;
    }

}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage