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

公開メンバ関数

String toString ()
 

静的公開メンバ関数

static SubjectType fromString (String param)
 

公開変数類

 PAIRWISE =("pairwise")
 
 PUBLIC =("public")
 

非公開メンバ関数

 SubjectType (String paramName)
 

非公開変数類

final String paramName
 

詳解

著者
Javier Rojas Blum Date: 05.11.2012

構築子と解体子

◆ SubjectType()

org.xdi.oxauth.model.common.SubjectType.SubjectType ( String  paramName)
inlineprivate
19  {
20  this.paramName = paramName;
21  }
final String paramName
Definition: SubjectType.java:17

関数詳解

◆ fromString()

static SubjectType org.xdi.oxauth.model.common.SubjectType.fromString ( String  param)
inlinestatic

Returns the corresponding SubjectType for an user id type parameter.

引数
paramThe parameter.
戻り値
The corresponding user id type if found, otherwise null.
30  {
31  if (param != null) {
32  for (SubjectType uit : SubjectType.values()) {
33  if (param.equals(uit.paramName)) {
34  return uit;
35  }
36  }
37  }
38  return null;
39  }
SubjectType(String paramName)
Definition: SubjectType.java:19

◆ toString()

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

Returns a string representation of the object. In this case the parameter name for the user id type parameter.

46  {
47  return paramName;
48  }
final String paramName
Definition: SubjectType.java:17

メンバ詳解

◆ PAIRWISE

org.xdi.oxauth.model.common.SubjectType.PAIRWISE =("pairwise")

◆ paramName

final String org.xdi.oxauth.model.common.SubjectType.paramName
private

◆ PUBLIC

org.xdi.oxauth.model.common.SubjectType.PUBLIC =("public")

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