public static enum Authenticator.RequestorType extends Enum<Authenticator.RequestorType>
列挙型定数と説明 |
---|
PROXY
認証を要求しているエンティティは、HTTPプロキシ・サーバーです。
|
SERVER
認証を要求しているエンティティは、元のHTTPサーバーです。
|
修飾子と型 | メソッドと説明 |
---|---|
static Authenticator.RequestorType |
valueOf(String name)
指定された名前を持つ、この型の列挙型定数を返します。
|
static Authenticator.RequestorType[] |
values()
この列挙型の定数を含む配列を、宣言されている順序で返します。
|
public static final Authenticator.RequestorType PROXY
public static final Authenticator.RequestorType SERVER
public static Authenticator.RequestorType[] values()
for (Authenticator.RequestorType c : Authenticator.RequestorType.values()) System.out.println(c);
public static Authenticator.RequestorType valueOf(String name)
name
- 返される列挙型定数の名前。IllegalArgumentException
- 指定された名前を持つ定数をこの列挙型が持っていない場合NullPointerException
- 引数がnullの場合 バグまたは機能を送信
詳細なAPIリファレンスおよび開発者ドキュメントについては、Java SEのドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright© 1993, 2014, Oracle and/or its affiliates. All rights reserved.