- java.lang.Object
-
- java.lang.Enum<FormSubmitEvent.MethodType>
-
- javax.swing.text.html.FormSubmitEvent.MethodType
-
- All Implemented Interfaces:
-
Serializable
,Comparable<FormSubmitEvent.MethodType>
- Enclosing class:
- FormSubmitEvent
public static enum FormSubmitEvent.MethodType extends Enum<FormSubmitEvent.MethodType>
表示HTML表单方法类型。-
GET
对应于GET表单方法 -
POST
对应于POST方法
- 从以下版本开始:
- 1.5
-
-
方法摘要
所有方法 静态方法 具体的方法 Modifier and Type 方法 描述 static FormSubmitEvent.MethodType
valueOf(String name)
以指定的名称返回此类型的枚举常量。static FormSubmitEvent.MethodType[]
values()
按照它们声明的顺序返回一个包含此枚举类型常量的数组。
-
-
-
Enum Constant Detail
-
GET
public static final FormSubmitEvent.MethodType GET
GET
对应于GET表单方法
-
POST
public static final FormSubmitEvent.MethodType POST
POST
对应于POST方法
-
-
方法详细信息
-
values
public static FormSubmitEvent.MethodType[] values()
按照它们声明的顺序返回一个包含此枚举类型常量的数组。 该方法可用于遍历常量如下:for (FormSubmitEvent.MethodType c : FormSubmitEvent.MethodType.values()) System.out.println(c);
- 结果
- 一个包含这个枚举类型的常量的数组,按照它们被声明的顺序
-
valueOf
public static FormSubmitEvent.MethodType valueOf(String name)
以指定的名称返回此类型的枚举常量。 字符串必须完全匹配用于声明此类型的枚举常量的标识符。 (不允许使用外来空白字符。)- 参数
-
name
- 要返回的枚举常数的名称。 - 结果
- 具有指定名称的枚举常数
- 异常
-
IllegalArgumentException
- 如果此枚举类型没有指定名称的常量 -
NullPointerException
- 如果参数为空
-
-