public static enum AuthService.AgeLimit extends Enum<AuthService.AgeLimit>
Enum Constant and Description |
---|
LIMIT_12
12세 인증
|
LIMIT_15
15세 인증
|
LIMIT_18
18세 인증
|
LIMIT_19
19세 인증
|
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
static AuthService.AgeLimit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthService.AgeLimit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthService.AgeLimit LIMIT_12
public static final AuthService.AgeLimit LIMIT_15
public static final AuthService.AgeLimit LIMIT_18
public static final AuthService.AgeLimit LIMIT_19
public String getValue()
public static AuthService.AgeLimit 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 AuthService.AgeLimit[] values()
for (AuthService.AgeLimit c : AuthService.AgeLimit.values()) System.out.println(c);