得物.apk(点击下载) / NetHost.java


package com.shizhuang.duapp.modules.financialstagesdk.api.config;

import com.meituan.robust.ChangeQuickRedirect;
import com.meituan.robust.PatchProxy;
import com.meituan.robust.PatchProxyResult;
import kotlin.Metadata;
import org.jetbrains.annotations.NotNull;

@Metadata(bv = {1, 0, 3}, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0010\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u000f\b†\u0001\u0018\u00002\b\u0012\u0004\u0012\u00020\u00000\u0001B\u001f\b\u0002\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003\u0012\u0006\u0010\u0005\u001a\u00020\u0003¢\u0006\u0002\u0010\u0006R\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0007\u0010\bR\u0011\u0010\u0005\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\t\u0010\bR\u0011\u0010\u0004\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\n\u0010\bj\u0002\b\u000bj\u0002\b\fj\u0002\b\rj\u0002\b\u000ej\u0002\b\u000fj\u0002\b\u0010j\u0002\b\u0011¨\u0006\u0012"}, d2 = {"Lcom/shizhuang/duapp/modules/financialstagesdk/api/config/NetHost;", "", "hostName", "", "phpHostUrl", "javaHostUrl", "(Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "getHostName", "()Ljava/lang/String;", "getJavaHostUrl", "getPhpHostUrl", "DEV_1", "DEV_2", "TEST_0", "TEST_1", "TEST_2", "PRE", "Release", "com.shizhuang.duapp.libs.du_financial_stage_sdk"}, k = 1, mv = {1, 4, 2})
/* compiled from: FinancialStageConfig.kt */
public enum NetHost {
    DEV_1("Dev-1 new", "https://d1-m.dewu.net/", "https://d1-app.dewu.net/"),
    DEV_2("Dev-1 new", "https://d2-m.dewu.net/", "https://d2-app.dewu.net/"),
    TEST_0("Test-0 new", "https://t0-m.dewu.net/", "https://t0-app.dewu.net/"),
    TEST_1("Test-1 new", "https://t1-m.dewu.net/", "https://t1-app.dewu.net/"),
    TEST_2("Test-2 new", "https://t2-m.dewu.net/", "https://t2-app.dewu.net/"),
    PRE("预发布环境", "http://pre-m.dewu.com/", "https://pre-app.dewu.com/"),
    Release("Release new", "https://m.dewu.com/", "https://app.dewu.com/");
    
    public static ChangeQuickRedirect changeQuickRedirect;
    @NotNull
    private final String hostName;
    @NotNull
    private final String javaHostUrl;
    @NotNull
    private final String phpHostUrl;

    private NetHost(String str, String str2, String str3) {
        this.hostName = str;
        this.phpHostUrl = str2;
        this.javaHostUrl = str3;
    }

    public static NetHost valueOf(String str) {
        PatchProxyResult proxy = PatchProxy.proxy(new Object[]{str}, null, changeQuickRedirect, true, 146249, new Class[]{String.class}, NetHost.class);
        return (NetHost) (proxy.isSupported ? proxy.result : Enum.valueOf(NetHost.class, str));
    }

    @NotNull
    public final String getHostName() {
        PatchProxyResult proxy = PatchProxy.proxy(new Object[0], this, changeQuickRedirect, false, 146245, new Class[0], String.class);
        return proxy.isSupported ? (String) proxy.result : this.hostName;
    }

    @NotNull
    public final String getJavaHostUrl() {
        PatchProxyResult proxy = PatchProxy.proxy(new Object[0], this, changeQuickRedirect, false, 146247, new Class[0], String.class);
        return proxy.isSupported ? (String) proxy.result : this.javaHostUrl;
    }

    @NotNull
    public final String getPhpHostUrl() {
        PatchProxyResult proxy = PatchProxy.proxy(new Object[0], this, changeQuickRedirect, false, 146246, new Class[0], String.class);
        return proxy.isSupported ? (String) proxy.result : this.phpHostUrl;
    }
}