mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 10:02:28 -06:00
23 lines
592 B
Java
23 lines
592 B
Java
|
package com.google.common.base;
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
@ElementTypesAreNonnullByDefault
|
||
|
/* loaded from: classes2.dex */
|
||
|
public abstract class CommonPattern {
|
||
|
public abstract int flags();
|
||
|
|
||
|
public abstract CommonMatcher matcher(CharSequence charSequence);
|
||
|
|
||
|
public abstract String pattern();
|
||
|
|
||
|
public abstract String toString();
|
||
|
|
||
|
public static CommonPattern compile(String str) {
|
||
|
return Platform.compilePattern(str);
|
||
|
}
|
||
|
|
||
|
public static boolean isPcreLike() {
|
||
|
return Platform.patternCompilerIsPcreLike();
|
||
|
}
|
||
|
}
|