public static enum AgeAuthResponse.AgeAuthLimitStatus extends Enum<AgeAuthResponse.AgeAuthLimitStatus>
Enum Constant and Description |
---|
BYPASS_AGE_LIMIT
인증 받은 연령이 제한 나이 이상
|
DONT_BYPASS_AGE_LIMIT
인증 받은 연령이 제한 나이 미만
|
DONT_KNOW
App에 나이제한이 설정되어있지 않은경우, com.kakao.usermgmt.UserApi.requestAgeAuthInfo() param값으로 AgeLimit조차 요청으로 들어오지 않으면
나이 기준을 알 수 없기 때문에 DONT_KNOW값이 들어간다.
|
Modifier and Type | Method and Description |
---|---|
static AgeAuthResponse.AgeAuthLimitStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AgeAuthResponse.AgeAuthLimitStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AgeAuthResponse.AgeAuthLimitStatus BYPASS_AGE_LIMIT
public static final AgeAuthResponse.AgeAuthLimitStatus DONT_BYPASS_AGE_LIMIT
public static final AgeAuthResponse.AgeAuthLimitStatus DONT_KNOW
public static AgeAuthResponse.AgeAuthLimitStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static AgeAuthResponse.AgeAuthLimitStatus[] values()
for (AgeAuthResponse.AgeAuthLimitStatus c : AgeAuthResponse.AgeAuthLimitStatus.values()) System.out.println(c);