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

public enum Status {
    LIVE("live"),
    UPCOMING("upcoming"),
    PAST("past"),
    MISSING("missing"),
    ALL("all");

    private final String value;

    Status(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