public enum MemberStatusCode extends java.lang.Enum<MemberStatusCode>
| Enum Constant and Description |
|---|
DELETED
삭제
|
DISABLE
이용 중지
|
NORMAL
정상
|
NULL
NULL
|
WAITING_REGISTRATION
신규 등록 대기
|
| Modifier and Type | Field and Description |
|---|---|
private int |
mStatus |
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static MemberStatusCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MemberStatusCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MemberStatusCode NULL
public static final MemberStatusCode NORMAL
public static final MemberStatusCode WAITING_REGISTRATION
public static final MemberStatusCode DELETED
public static final MemberStatusCode DISABLE
public static MemberStatusCode[] values()
for (MemberStatusCode c : MemberStatusCode.values()) System.out.println(c);
public static MemberStatusCode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getCode()