gluu
公開メンバ関数 | 静的公開メンバ関数 | 公開変数類 | 非公開メンバ関数 | 非公開変数類 | 全メンバ一覧
列挙 org.xdi.oxauth.model.common.WebKeyStorage 詳解
org.xdi.oxauth.model.common.WebKeyStorage 連携図
Collaboration graph

公開メンバ関数

String getValue ()
 
String toString ()
 

静的公開メンバ関数

static WebKeyStorage fromString (String string)
 

公開変数類

 KEYSTORE =("keystore")
 
 PKCS11 =("pkcs11")
 

非公開メンバ関数

 WebKeyStorage (String value)
 

非公開変数類

final String value
 

詳解

著者
Javier Rojas Blum
バージョン
June 15, 2016

構築子と解体子

◆ WebKeyStorage()

org.xdi.oxauth.model.common.WebKeyStorage.WebKeyStorage ( String  value)
inlineprivate
22  {
23  this.value = value;
24  }
final String value
Definition: WebKeyStorage.java:20

関数詳解

◆ fromString()

static WebKeyStorage org.xdi.oxauth.model.common.WebKeyStorage.fromString ( String  string)
inlinestatic
31  {
32  for (WebKeyStorage v : values()) {
33  if (v.getValue().equalsIgnoreCase(string)) {
34  return v;
35  }
36  }
37  return KEYSTORE;
38  }
WebKeyStorage(String value)
Definition: WebKeyStorage.java:22
KEYSTORE
Definition: WebKeyStorage.java:17

◆ getValue()

String org.xdi.oxauth.model.common.WebKeyStorage.getValue ( )
inline
26  {
27  return value;
28  }
final String value
Definition: WebKeyStorage.java:20

◆ toString()

String org.xdi.oxauth.model.common.WebKeyStorage.toString ( )
inline

Returns a string representation of the object. In this case the parameter name.

戻り値
The string representation of the object.
47  {
48  return value;
49  }
final String value
Definition: WebKeyStorage.java:20

メンバ詳解

◆ KEYSTORE

org.xdi.oxauth.model.common.WebKeyStorage.KEYSTORE =("keystore")

◆ PKCS11

org.xdi.oxauth.model.common.WebKeyStorage.PKCS11 =("pkcs11")

◆ value

final String org.xdi.oxauth.model.common.WebKeyStorage.value
private

次のファイルからこの列挙についての詳解を抽出しました: