Enum Class PatternParseException.PatternMessage
java.lang.Object
java.lang.Enum<PatternParseException.PatternMessage>
cn.taketoday.web.util.pattern.PatternParseException.PatternMessage
public static enum PatternParseException.PatternMessage
extends Enum<PatternParseException.PatternMessage>
The messages that can be included in a
PatternParseException when there is a parse failure.-
嵌套类概要
从类继承的嵌套类/接口 java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
枚举常量概要
枚举常量枚举常量说明 -
字段概要
字段 -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明formatMessage(Object... inserts) Returns the enum constant of this class with the specified name.static PatternParseException.PatternMessage[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
枚举常量详细资料
-
MISSING_CLOSE_CAPTURE
-
MISSING_OPEN_CAPTURE
-
ILLEGAL_NESTED_CAPTURE
-
CANNOT_HAVE_ADJACENT_CAPTURES
-
ILLEGAL_CHARACTER_AT_START_OF_CAPTURE_DESCRIPTOR
public static final PatternParseException.PatternMessage ILLEGAL_CHARACTER_AT_START_OF_CAPTURE_DESCRIPTOR -
ILLEGAL_CHARACTER_IN_CAPTURE_DESCRIPTOR
-
NO_MORE_DATA_EXPECTED_AFTER_CAPTURE_THE_REST
public static final PatternParseException.PatternMessage NO_MORE_DATA_EXPECTED_AFTER_CAPTURE_THE_REST -
BADLY_FORMED_CAPTURE_THE_REST
-
MISSING_REGEX_CONSTRAINT
-
ILLEGAL_DOUBLE_CAPTURE
-
REGEX_PATTERN_SYNTAX_EXCEPTION
-
CAPTURE_ALL_IS_STANDALONE_CONSTRUCT
-
-
字段详细资料
-
message
-
-
构造器详细资料
-
PatternMessage
-
-
方法详细资料
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- 返回:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- 参数:
name- 要返回的枚举常量的名称。- 返回:
- 返回带有指定名称的枚举常量
- 抛出:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- 如果参数为空值
-
formatMessage
-