Enum Class TopicsPattern.RegexImplementation

java.lang.Object
java.lang.Enum<TopicsPattern.RegexImplementation>
org.apache.pulsar.common.topics.TopicsPattern.RegexImplementation
All Implemented Interfaces:
Serializable, Comparable<TopicsPattern.RegexImplementation>, Constable
Enclosing interface:
TopicsPattern

public static enum TopicsPattern.RegexImplementation extends Enum<TopicsPattern.RegexImplementation>
The regex implementation type used by the TopicsPattern. RE2J is a fast regex engine that is suitable for high-performance applications. JDK uses the standard Java regex engine. RE2J_WITH_JDK_FALLBACK uses RE2J but falls back to JDK if RE2J fails to compile the pattern.