- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
24 lines
594 B
Java
24 lines
594 B
Java
package com.ironsource.mediationsdk.adunit.adapter.utility;
|
|
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public enum AdOptionsPosition {
|
|
TOP_LEFT,
|
|
TOP_RIGHT,
|
|
BOTTOM_LEFT,
|
|
BOTTOM_RIGHT;
|
|
|
|
public static final Companion Companion = new Companion(null);
|
|
public static String AD_OPTIONS_POSITION_KEY = "adOptionsPos";
|
|
|
|
public static final class Companion {
|
|
private Companion() {
|
|
}
|
|
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
}
|
|
}
|