blob: 1a7a0a0c7c9b71353036bc8228a063e61025fb98 (
plain) (
blame)
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
|
package ml.docilealligator.infinityforreddit.font;
import ml.docilealligator.infinityforreddit.R;
public enum FontStyle {
XSmall(R.style.FontStyle_XSmall, "XSmall"),
Small(R.style.FontStyle_Small, "Small"),
Normal(R.style.FontStyle_Normal, "Normal"),
Large(R.style.FontStyle_Large, "Large"),
XLarge(R.style.FontStyle_XLarge, "XLarge");
private final int resId;
private final String title;
FontStyle(int resId, String title) {
this.resId = resId;
this.title = title;
}
public int getResId() {
return resId;
}
public String getTitle() {
return title;
}
}
|