mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
13 lines
321 B
Java
Generated
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; }
|
|
}
|