28 lines
626 B
Java
28 lines
626 B
Java
|
package io.flutter.plugins.camera.features.exposurelock;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public enum ExposureMode {
|
||
|
auto("auto"),
|
||
|
locked("locked");
|
||
|
|
||
|
private final String strValue;
|
||
|
|
||
|
ExposureMode(String str) {
|
||
|
this.strValue = str;
|
||
|
}
|
||
|
|
||
|
public static ExposureMode getValueForString(String str) {
|
||
|
for (ExposureMode exposureMode : values()) {
|
||
|
if (exposureMode.strValue.equals(str)) {
|
||
|
return exposureMode;
|
||
|
}
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
@Override // java.lang.Enum
|
||
|
public final String toString() {
|
||
|
return this.strValue;
|
||
|
}
|
||
|
}
|