- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
18 lines
296 B
Java
18 lines
296 B
Java
package com.fyber.inneractive.sdk.model.vast;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public enum r {
|
|
streaming("streaming"),
|
|
progressive("progressive");
|
|
|
|
String mValue;
|
|
|
|
r(String str) {
|
|
this.mValue = str;
|
|
}
|
|
|
|
public final String e() {
|
|
return this.mValue;
|
|
}
|
|
}
|