17 lines
357 B
Java
17 lines
357 B
Java
package o;
|
|
|
|
/* renamed from: o.brf, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public enum EnumC5365brf {
|
|
NEW_RELEASES("NewReleases"),
|
|
LOWEST_POINT("LowestPoint"),
|
|
HIGHEST_POINT("HighestPoint"),
|
|
POPULARITY("Popularity");
|
|
|
|
public String value;
|
|
|
|
EnumC5365brf(String str) {
|
|
this.value = str;
|
|
}
|
|
}
|