public enum EscapeType extends Enum<EscapeType>
| 限定符和类型 | 方法和说明 |
|---|---|
static int |
findInt(String t) |
static String |
findText(int v) |
int |
v() |
static EscapeType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static EscapeType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final EscapeType NONE
public static final EscapeType HTML
public static final EscapeType JS
public static final EscapeType CSS
public static final EscapeType ALL
public static EscapeType[] values()
for (EscapeType c : EscapeType.values()) System.out.println(c);
public static EscapeType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public int v()
public static String findText(int v)
public static int findInt(String t)
Copyright © 2018. All rights reserved.