Package io.sendon.model
Enum TemplateResponseSchema.KepStatusEnum
- java.lang.Object
-
- java.lang.Enum<TemplateResponseSchema.KepStatusEnum>
-
- io.sendon.model.TemplateResponseSchema.KepStatusEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TemplateResponseSchema.KepStatusEnum>
- Enclosing class:
- TemplateResponseSchema
public static enum TemplateResponseSchema.KepStatusEnum extends Enum<TemplateResponseSchema.KepStatusEnum>
검수 상태
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTemplateResponseSchema.KepStatusEnum.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TemplateResponseSchema.KepStatusEnumfromValue(String value)StringgetValue()StringtoString()static voidvalidateJsonElement(com.google.gson.JsonElement jsonElement)static TemplateResponseSchema.KepStatusEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TemplateResponseSchema.KepStatusEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
N
public static final TemplateResponseSchema.KepStatusEnum N
-
I
public static final TemplateResponseSchema.KepStatusEnum I
-
O
public static final TemplateResponseSchema.KepStatusEnum O
-
R
public static final TemplateResponseSchema.KepStatusEnum R
-
-
Method Detail
-
values
public static TemplateResponseSchema.KepStatusEnum[] 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 (TemplateResponseSchema.KepStatusEnum c : TemplateResponseSchema.KepStatusEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TemplateResponseSchema.KepStatusEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<TemplateResponseSchema.KepStatusEnum>
-
fromValue
public static TemplateResponseSchema.KepStatusEnum fromValue(String value)
-
validateJsonElement
public static void validateJsonElement(com.google.gson.JsonElement jsonElement) throws IOException- Throws:
IOException
-
-