- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
19 lines
317 B
Java
19 lines
317 B
Java
package com.amazonaws;
|
|
|
|
/* loaded from: classes.dex */
|
|
public enum Protocol {
|
|
HTTP("http"),
|
|
HTTPS("https");
|
|
|
|
private final String protocol;
|
|
|
|
@Override // java.lang.Enum
|
|
public String toString() {
|
|
return this.protocol;
|
|
}
|
|
|
|
Protocol(String str) {
|
|
this.protocol = str;
|
|
}
|
|
}
|