37 lines
863 B
Java
37 lines
863 B
Java
package com.facebook.share.widget;
|
|
|
|
/* loaded from: classes.dex */
|
|
public enum LikeView$Style {
|
|
STANDARD("standard", 0),
|
|
BUTTON("button", 1),
|
|
BOX_COUNT("box_count", 2);
|
|
|
|
private int intValue;
|
|
private String stringValue;
|
|
static LikeView$Style DEFAULT = STANDARD;
|
|
|
|
LikeView$Style(String str, int i) {
|
|
this.stringValue = str;
|
|
this.intValue = i;
|
|
}
|
|
|
|
static LikeView$Style fromInt(int i) {
|
|
for (LikeView$Style likeView$Style : values()) {
|
|
if (likeView$Style.getValue() == i) {
|
|
return likeView$Style;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public int getValue() {
|
|
return this.intValue;
|
|
}
|
|
|
|
@Override // java.lang.Enum
|
|
public String toString() {
|
|
return this.stringValue;
|
|
}
|
|
}
|