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

公開メンバ関数

 ClaimTokenFormatType (String value)
 
String getValue ()
 

静的公開メンバ関数

static ClaimTokenFormatType fromValue (String value)
 
static boolean isValueValid (String value)
 

公開変数類

 ID_TOKEN =("http://openid.net/specs/openid-connect-core-1_0.html#IDToken")
 

非公開変数類

String value
 

詳解

著者
yuriyz on 05/30/2017.

構築子と解体子

◆ ClaimTokenFormatType()

org.xdi.oxauth.model.uma.ClaimTokenFormatType.ClaimTokenFormatType ( String  value)
inline
11  {
12  if (value == null || value.trim().isEmpty()) {
13  throw new IllegalArgumentException();
14  }
15  this.value = value;
16  }
String value
Definition: ClaimTokenFormatType.java:9

関数詳解

◆ fromValue()

static ClaimTokenFormatType org.xdi.oxauth.model.uma.ClaimTokenFormatType.fromValue ( String  value)
inlinestatic
22  {
23  for (ClaimTokenFormatType type : values()) {
24  if (type.getValue().equals(value)) {
25  return type;
26  }
27  }
28  return null;
29  }
String value
Definition: ClaimTokenFormatType.java:9
ClaimTokenFormatType(String value)
Definition: ClaimTokenFormatType.java:11

◆ getValue()

String org.xdi.oxauth.model.uma.ClaimTokenFormatType.getValue ( )
inline
18  {
19  return value;
20  }
String value
Definition: ClaimTokenFormatType.java:9

◆ isValueValid()

static boolean org.xdi.oxauth.model.uma.ClaimTokenFormatType.isValueValid ( String  value)
inlinestatic
31  {
32  return fromValue(value) != null;
33  }
static ClaimTokenFormatType fromValue(String value)
Definition: ClaimTokenFormatType.java:22
String value
Definition: ClaimTokenFormatType.java:9

メンバ詳解

◆ ID_TOKEN

org.xdi.oxauth.model.uma.ClaimTokenFormatType.ID_TOKEN =("http://openid.net/specs/openid-connect-core-1_0.html#IDToken")

◆ value

String org.xdi.oxauth.model.uma.ClaimTokenFormatType.value
private

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