类的使用
com.mysql.cj.util.StringUtils.SearchMode
-
使用StringUtils.SearchMode的程序包 程序包 说明 com.mysql.cj.util -
-
com.mysql.cj.util中StringUtils.SearchMode的使用
类型参数类型为StringUtils.SearchMode的com.mysql.cj.util中的字段 修饰符和类型 字段 说明 static Set<StringUtils.SearchMode>StringUtils. SEARCH_MODE__ALLFull search mode: allow backslash escape, skip between markers, skip block comments, skip line comments and skip white space.static Set<StringUtils.SearchMode>StringUtils. SEARCH_MODE__BSESC_COM_WSSearch mode: allow backslash escape, skip block comments, skip line comments and skip white space.static Set<StringUtils.SearchMode>StringUtils. SEARCH_MODE__BSESC_MRK_WSSearch mode: allow backslash escape, skip between markers and skip white space.static Set<StringUtils.SearchMode>StringUtils. SEARCH_MODE__COM_WSSearch mode: skip block comments, skip line comments and skip white space.static Set<StringUtils.SearchMode>StringUtils. SEARCH_MODE__MRK_COM_WSSearch mode: skip between markers, skip block comments, skip line comments and skip white space.static Set<StringUtils.SearchMode>StringUtils. SEARCH_MODE__MRK_WSSearch mode: skip between markers and skip white space.static Set<StringUtils.SearchMode>StringUtils. SEARCH_MODE__NONEEmpty search mode.返回StringUtils.SearchMode的com.mysql.cj.util中的方法 修饰符和类型 方法 说明 static StringUtils.SearchModeStringUtils.SearchMode. valueOf(String name)返回带有指定名称的该类型的枚举常量。static StringUtils.SearchMode[]StringUtils.SearchMode. values()按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。类型变量类型为StringUtils.SearchMode的com.mysql.cj.util中的方法参数 修饰符和类型 方法 说明 static intStringUtils. indexOfIgnoreCase(int startingPosition, String searchIn, String[] searchForSequence, String openingMarkers, String closingMarkers, Set<StringUtils.SearchMode> searchMode)Finds the position of the first of a consecutive sequence of strings within a string, ignoring case, with the option to skip text delimited by given markers or within comments.static intStringUtils. indexOfIgnoreCase(int startingPosition, String searchIn, String searchFor, String openingMarkers, String closingMarkers, String overridingMarkers, Set<StringUtils.SearchMode> searchMode)Finds the position of a substring within a string, ignoring case, with the option to skip text delimited by given markers or within comments.static intStringUtils. indexOfIgnoreCase(int startingPosition, String searchIn, String searchFor, String openingMarkers, String closingMarkers, Set<StringUtils.SearchMode> searchMode)Finds the position of a substring within a string, ignoring case, with the option to skip text delimited by given markers or within comments.static List<String>StringUtils. split(String stringToSplit, String delimiter, String openingMarkers, String closingMarkers, boolean trim, Set<StringUtils.SearchMode> searchMode)Splits stringToSplit into a list, using the given delimiter and skipping all between the given markers.static List<String>StringUtils. split(String stringToSplit, String delimiter, String openingMarkers, String closingMarkers, String overridingMarkers, boolean trim, Set<StringUtils.SearchMode> searchMode)Splits stringToSplit into a list, using the given delimiter and skipping all between the given markers.
-