导航菜单

页面标题

页面副标题

Aplazo v2.4.68 - O.java 源代码

正在查看: Aplazo v2.4.68 应用的 O.java JAVA 源代码文件

本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。


package io.seon.androidsdk.service;

public final class O {
    private static final O[] $VALUES;
    public static final O ADB_WIRELESS;
    public static final O ANDROID_HOTSPOT;
    public static final O ANDROID_HOTSPOT2;
    public static final O ANYDESK;
    public static final O IOS_HOTSPOT;
    public static final O RUST_DESK;
    public static final O TEAMVIEWER;
    public static final O UIAUTOMATOR;
    final String address;
    final Integer[] ports;
    final P proto;

    static {
        P p = P.TCP;
        ANYDESK = new O("ANYDESK", 0, "127.0.0.1", new Integer[]{7070}, p);
        TEAMVIEWER = new O("TEAMVIEWER", 1, "127.0.0.1", new Integer[]{5938}, p);
        ADB_WIRELESS = new O("ADB_WIRELESS", 2, "127.0.0.1", new Integer[]{5555}, p);
        IOS_HOTSPOT = new O("IOS_HOTSPOT", 3, "172.20.10.1", new Integer[]{62078}, p);
        ANDROID_HOTSPOT = new O("ANDROID_HOTSPOT", 4, "192.168.42.254", new Integer[]{53}, p);
        ANDROID_HOTSPOT2 = new O("ANDROID_HOTSPOT2", 5, "192.168.42.1", new Integer[]{53}, p);
        Integer[] numArr = new Integer[10];
        for (int i = 0; i < 10; i++) {
            numArr[i] = Integer.valueOf(6790 + i);
        }
        O o = new O("UIAUTOMATOR", 6, "127.0.0.1", numArr, p);
        UIAUTOMATOR = o;
        O o2 = new O("RUST_DESK", 7, "", new Integer[]{21119}, P.UDP);
        RUST_DESK = o2;
        $VALUES = new O[]{ANYDESK, TEAMVIEWER, ADB_WIRELESS, IOS_HOTSPOT, ANDROID_HOTSPOT, ANDROID_HOTSPOT2, o, o2};
    }

    public O(String str, int i, String str2, Integer[] numArr, P p) {
        this.address = str2;
        this.ports = numArr;
        this.proto = p;
    }

    public static O valueOf(String str) {
        return (O) Enum.valueOf(O.class, str);
    }

    public static O[] values() {
        return (O[]) $VALUES.clone();
    }
}