java.lang.Object
java.lang.Enum<ProxyPropertyKey>
io.github.astrapi69.net.properties.ProxyPropertyKey
Alle implementierten Schnittstellen:
Serializable, Comparable<ProxyPropertyKey>, Constable

public enum ProxyPropertyKey extends Enum<ProxyPropertyKey>
The enum ProxyPropertyKey holds system property keys for proxies.
Siehe auch:
  • Enum-Konstanten - Details

    • FTP_NON_PROXY_HOSTS

      public static final ProxyPropertyKey FTP_NON_PROXY_HOSTS
      The key for the ftp non proxy hosts.
    • FTP_PROXY_HOST

      public static final ProxyPropertyKey FTP_PROXY_HOST
      The key for the ftp proxy host.
    • FTP_PROXY_PORT

      public static final ProxyPropertyKey FTP_PROXY_PORT
      The key for the ftp proxy port.
    • HTTP_NON_PROXY_HOSTS

      public static final ProxyPropertyKey HTTP_NON_PROXY_HOSTS
      The key for the http non proxy hosts.
    • HTTP_PROXY_HOST

      public static final ProxyPropertyKey HTTP_PROXY_HOST
      The http proxy host.
    • HTTP_PROXY_PORT

      public static final ProxyPropertyKey HTTP_PROXY_PORT
      The key for the http proxy port.
    • SOCKS_PROXY_HOST

      public static final ProxyPropertyKey SOCKS_PROXY_HOST
      The key for the socks proxy host.
    • SOCKS_PROXY_PORT

      public static final ProxyPropertyKey SOCKS_PROXY_PORT
      The key for the socks proxy port.
  • Methodendetails

    • values

      public static ProxyPropertyKey[] values()
      Gibt ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration zurück.
      Gibt zurück:
      ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration
    • valueOf

      public static ProxyPropertyKey valueOf(String name)
      Gibt die Enum-Konstante dieser Klasse mit dem angegebenen Namen zurück. Die Zeichenfolge muss exakt mit einer ID übereinstimmen, mit der eine Enum-Konstante in dieser Klasse deklariert wird. (Zusätzliche Leerzeichen sind nicht zulässig.)
      Parameter:
      name - Name der zurückzugebenden Enumerationskonstante.
      Gibt zurück:
      Enumerationskonstante mit dem angegebenen Namen
      Löst aus:
      IllegalArgumentException - wenn diese Enum-Klasse keine Konstante mit dem angegebenen Namen enthält
      NullPointerException - wenn das Argument nicht angegeben wird