Files
codeql/java/ql/test/stubs/okhttp-4.9.3/kotlin/text/RegexOption.java
Joe Farebrother 4afecf575e Generate more stubs for okhttp and fix tests.
Some generated stubs needed to be manually corrected.
2022-12-09 13:41:17 +00:00

13 lines
321 B
Java
Generated

// Generated automatically from kotlin.text.RegexOption for testing purposes
package kotlin.text;
public enum RegexOption
{
CANON_EQ, COMMENTS, DOT_MATCHES_ALL, IGNORE_CASE, LITERAL, MULTILINE, UNIX_LINES;
private RegexOption() {}
public int getMask(){ return 0; }
public int getValue(){ return 0; }
}