Enum Class AdbForwardType

java.lang.Object
java.lang.Enum<AdbForwardType>
com.pnfsoftware.jeb.core.units.code.android.adb.AdbForwardType
All Implemented Interfaces:
Serializable, Comparable<AdbForwardType>, Constable

public enum AdbForwardType extends Enum<AdbForwardType>
Types of ADB forwards.
  • Enum Constant Details

    • TCP

      public static final AdbForwardType TCP
      TCP endpoint.
    • LOCAL_ABSTRACT

      public static final AdbForwardType LOCAL_ABSTRACT
      Abstract local socket endpoint.
    • LOCAL_RESERVED

      public static final AdbForwardType LOCAL_RESERVED
      Reserved local socket endpoint.
    • LOCAL

      public static final AdbForwardType LOCAL
      Local filesystem socket endpoint.
    • DEVICE

      public static final AdbForwardType DEVICE
      Device endpoint.
    • JDWP

      public static final AdbForwardType JDWP
      JDWP endpoint.
  • Method Details

    • values

      public static AdbForwardType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AdbForwardType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<AdbForwardType>