Package io.sendon.kakao.request
Enum Template.TemplateStatus
- java.lang.Object
-
- java.lang.Enum<Template.TemplateStatus>
-
- io.sendon.kakao.request.Template.TemplateStatus
-
- All Implemented Interfaces:
Serializable,Comparable<Template.TemplateStatus>
- Enclosing class:
- Template
public static enum Template.TemplateStatus extends Enum<Template.TemplateStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPROVEDDELETEDDORMANTIN_PREVIEWNEED_PREVIEWREJECTEDUNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Template.TemplateStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static Template.TemplateStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEED_PREVIEW
public static final Template.TemplateStatus NEED_PREVIEW
-
IN_PREVIEW
public static final Template.TemplateStatus IN_PREVIEW
-
APPROVED
public static final Template.TemplateStatus APPROVED
-
REJECTED
public static final Template.TemplateStatus REJECTED
-
DORMANT
public static final Template.TemplateStatus DORMANT
-
DELETED
public static final Template.TemplateStatus DELETED
-
UNKNOWN
public static final Template.TemplateStatus UNKNOWN
-
-
Field Detail
-
value
public final String value
-
-
Method Detail
-
values
public static Template.TemplateStatus[] 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 (Template.TemplateStatus c : Template.TemplateStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Template.TemplateStatus 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
-
-