Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
package com.facebook.internal;
import java.util.EnumSet;
import java.util.Iterator;
/* loaded from: classes.dex */
public enum SmartLoginOption {
None(0),
Enabled(1),
RequireConfirm(2);
public static final EnumSet<SmartLoginOption> ALL = EnumSet.allOf(SmartLoginOption.class);
private final long mValue;
SmartLoginOption(long j) {
this.mValue = j;
}
public static EnumSet<SmartLoginOption> parseOptions(long j) {
EnumSet<SmartLoginOption> noneOf = EnumSet.noneOf(SmartLoginOption.class);
Iterator it = ALL.iterator();
while (it.hasNext()) {
SmartLoginOption smartLoginOption = (SmartLoginOption) it.next();
if ((smartLoginOption.getValue() & j) != 0) {
noneOf.add(smartLoginOption);
}
}
return noneOf;
}
public long getValue() {
return this.mValue;
}
}