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

静的公開メンバ関数

static JwtType fromString (String param)
 

詳解

著者
Javier Rojas Blum
バージョン
December 17, 2015

関数詳解

◆ fromString()

static JwtType org.xdi.oxauth.model.jwt.JwtType.fromString ( String  param)
inlinestatic

Returns the corresponding JwtType for a parameter.

引数
paramThe parameter.
戻り値
The corresponding JWT Type if found, otherwise null.
23  {
24  if (param != null) {
25  for (JwtType t : JwtType.values()) {
26  if (param.equals(t.toString())) {
27  return t;
28  }
29  }
30  }
31  return null;
32  }

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