public enum ProfileStatus extends Enum<ProfileStatus>
| Enum Constant and Description |
|---|
BLOCKED |
UNVERIFIED |
VERIFIED |
| Modifier and Type | Method and Description |
|---|---|
String |
getJsonValue() |
static ProfileStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProfileStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileStatus UNVERIFIED
public static final ProfileStatus VERIFIED
public static final ProfileStatus BLOCKED
public static ProfileStatus[] values()
for (ProfileStatus c : ProfileStatus.values()) System.out.println(c);
public static ProfileStatus 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 String getJsonValue()
Copyright © 2020. All rights reserved.