public static enum HttpResponseUtil.StatusConvertMode extends java.lang.Enum<HttpResponseUtil.StatusConvertMode>
| Enum Constant and Description | 
|---|
CONVERT_ALL_TO_200
Nablarchのステータスコードを、HTTPレスポンスコード200に変換する(例外的に300系は除く)。 
 | 
CONVERT_ONLY_400_TO_200
Nablarchのステータスコード400のみ、HTTPレスポンスコード200に変換する。 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static HttpResponseUtil.StatusConvertMode | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static HttpResponseUtil.StatusConvertMode[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final HttpResponseUtil.StatusConvertMode CONVERT_ALL_TO_200
public static final HttpResponseUtil.StatusConvertMode CONVERT_ONLY_400_TO_200
public static HttpResponseUtil.StatusConvertMode[] values()
for (HttpResponseUtil.StatusConvertMode c : HttpResponseUtil.StatusConvertMode.values()) System.out.println(c);
public static HttpResponseUtil.StatusConvertMode 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 null