24 lines
442 B
Java
24 lines
442 B
Java
|
package o;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public enum BDh {
|
||
|
OPEN("OPEN"),
|
||
|
CLOSED("CLOSED"),
|
||
|
UNDEFINED("UNDEFINED");
|
||
|
|
||
|
public String status;
|
||
|
|
||
|
BDh(String str) {
|
||
|
this.status = str;
|
||
|
}
|
||
|
|
||
|
public static BDh a(String str) {
|
||
|
BDh bDh = OPEN;
|
||
|
if (bDh.status.equals(str)) {
|
||
|
return bDh;
|
||
|
}
|
||
|
BDh bDh2 = CLOSED;
|
||
|
return bDh2.status.equals(str) ? bDh2 : UNDEFINED;
|
||
|
}
|
||
|
}
|