Uses of Class
onig4j.OnigCaseFoldType

Uses of OnigCaseFoldType in onig4j
 

Methods in onig4j that return OnigCaseFoldType
 OnigCaseFoldType OnigRegex.getCaseFoldType()
          invoke onig_get_case_fold_flag() function.
static OnigCaseFoldType OnigCaseFoldType.getDefaultCaseFoldType()
          invoke onig_get_default_case_fold_flag() function.
static OnigCaseFoldType OnigCaseFoldType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OnigCaseFoldType[] OnigCaseFoldType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in onig4j with parameters of type OnigCaseFoldType
static void OnigCaseFoldType.setDefaultCaseFoldType(OnigCaseFoldType flag)
          invoke onig_set_default_case_fold_flag() function.
 

Constructors in onig4j with parameters of type OnigCaseFoldType
OnigRegex(java.lang.String pattern, OnigCaseFoldType flag, java.util.Collection<OnigOptionType> options)
          invoke onig_new_deluxe() function with ONIG_SYNTAX_DEFAULT.
OnigRegex(java.lang.String pattern, OnigCaseFoldType flag, OnigOptionType... options)
          invoke onig_new_deluxe() function with ONIG_SYNTAX_DEFAULT.
OnigRegex(java.lang.String pattern, OnigSyntaxType syntax, OnigCaseFoldType flag, java.util.Collection<OnigOptionType> options)
          invoke onig_new_deluxe() function.
OnigRegex(java.lang.String pattern, OnigSyntaxType syntax, OnigCaseFoldType flag, int options)
          invoke onig_new() or onig_new_deluxe() function.
OnigRegex(java.lang.String pattern, OnigSyntaxType syntax, OnigCaseFoldType flag, OnigOptionType... options)
          invoke onig_new_deluxe() function.