Package io.sendon.kakao.response
Enum GetGroup.GroupStatus
- java.lang.Object
-
- java.lang.Enum<GetGroup.GroupStatus>
-
- io.sendon.kakao.response.GetGroup.GroupStatus
-
- All Implemented Interfaces:
Serializable,Comparable<GetGroup.GroupStatus>
- Enclosing class:
- GetGroup
public static enum GetGroup.GroupStatus extends Enum<GetGroup.GroupStatus>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GetGroup.GroupStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static GetGroup.GroupStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final GetGroup.GroupStatus NONE
-
RESERVED
public static final GetGroup.GroupStatus RESERVED
-
PROCESSING
public static final GetGroup.GroupStatus PROCESSING
-
COMPLETED
public static final GetGroup.GroupStatus COMPLETED
-
FAILED
public static final GetGroup.GroupStatus FAILED
-
CANCELED
public static final GetGroup.GroupStatus CANCELED
-
-
Field Detail
-
value
public final String value
-
-
Method Detail
-
values
public static GetGroup.GroupStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GetGroup.GroupStatus c : GetGroup.GroupStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GetGroup.GroupStatus valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-