Enum Class RegexFlag

java.lang.Object
java.lang.Enum<RegexFlag>
org.jooq.meta.jaxb.RegexFlag
All Implemented Interfaces:
Serializable, Comparable<RegexFlag>, Constable

public enum RegexFlag extends Enum<RegexFlag>

Java class for RegexFlag.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="RegexFlag">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="UNIX_LINES"/>
     <enumeration value="CASE_INSENSITIVE"/>
     <enumeration value="COMMENTS"/>
     <enumeration value="MULTILINE"/>
     <enumeration value="LITERAL"/>
     <enumeration value="DOTALL"/>
     <enumeration value="UNICODE_CASE"/>
     <enumeration value="CANON_EQ"/>
     <enumeration value="UNICODE_CHARACTER_CLASS"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • UNIX_LINES

      public static final RegexFlag UNIX_LINES
      Apply the Pattern.UNIX_LINES flag to regular expressions from the code generation configuration.
    • CASE_INSENSITIVE

      public static final RegexFlag CASE_INSENSITIVE
      Apply the Pattern.CASE_INSENSITIVE flag to regular expressions from the code generation configuration.
    • COMMENTS

      public static final RegexFlag COMMENTS
      Apply the Pattern.COMMENTS flag to regular expressions from the code generation configuration.
    • MULTILINE

      public static final RegexFlag MULTILINE
      Apply the Pattern.MULTILINE flag to regular expressions from the code generation configuration.
    • LITERAL

      public static final RegexFlag LITERAL
      Apply the Pattern.LITERAL flag to regular expressions from the code generation configuration.
    • DOTALL

      public static final RegexFlag DOTALL
      Apply the Pattern.DOTALL flag to regular expressions from the code generation configuration.
    • UNICODE_CASE

      public static final RegexFlag UNICODE_CASE
      Apply the Pattern.UNICODE_CASE flag to regular expressions from the code generation configuration.
    • CANON_EQ

      public static final RegexFlag CANON_EQ
      Apply the Pattern.CANON_EQ flag to regular expressions from the code generation configuration.
    • UNICODE_CHARACTER_CLASS

      public static final RegexFlag UNICODE_CHARACTER_CLASS
      Apply the Pattern.UNICODE_CHARACTER_CLASS flag to regular expressions from the code generation configuration.
  • Method Details

    • values

      public static RegexFlag[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static RegexFlag valueOf(String name)
      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.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public String value()
    • fromValue

      public static RegexFlag fromValue(String v)