当前位置: 首页>>代码示例>>Java>>正文


Java IOCase.isCaseSensitive方法代码示例

本文整理汇总了Java中org.apache.commons.io.IOCase.isCaseSensitive方法的典型用法代码示例。如果您正苦于以下问题:Java IOCase.isCaseSensitive方法的具体用法?Java IOCase.isCaseSensitive怎么用?Java IOCase.isCaseSensitive使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.commons.io.IOCase的用法示例。


在下文中一共展示了IOCase.isCaseSensitive方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: RegexFileFilter

import org.apache.commons.io.IOCase; //导入方法依赖的package包/类
/**
 * Construct a new regular expression filter with the specified flags case sensitivity.
 *
 * @param pattern regular string expression to match
 * @param caseSensitivity  how to handle case sensitivity, null means case-sensitive
 * @throws IllegalArgumentException if the pattern is null
 */
public RegexFileFilter(String pattern, IOCase caseSensitivity) {
    if (pattern == null) {
        throw new IllegalArgumentException("Pattern is missing");
    }
    int flags = 0;
    if (caseSensitivity != null && !caseSensitivity.isCaseSensitive()) {
        flags = Pattern.CASE_INSENSITIVE;
    }
    this.pattern = Pattern.compile(pattern, flags);
}
 
开发者ID:fesch,项目名称:Moenagade,代码行数:18,代码来源:RegexFileFilter.java

示例2: RegexFileFilter

import org.apache.commons.io.IOCase; //导入方法依赖的package包/类
/**
 * Construct a new regular expression filter with the specified flags case sensitivity.
 *
 * @param pattern regular string expression to match
 * @param caseSensitivity  how to handle case sensitivity, null means case-sensitive
 * @throws IllegalArgumentException if the pattern is null
 */
public RegexFileFilter(final String pattern, final IOCase caseSensitivity) {
    if (pattern == null) {
        throw new IllegalArgumentException("Pattern is missing");
    }
    int flags = 0;
    if (caseSensitivity != null && !caseSensitivity.isCaseSensitive()) {
        flags = Pattern.CASE_INSENSITIVE;
    }
    this.pattern = Pattern.compile(pattern, flags);
}
 
开发者ID:PuppyRush,项目名称:WidgetStore,代码行数:18,代码来源:RegexFileFilter.java

示例3: RegexFileFilter

import org.apache.commons.io.IOCase; //导入方法依赖的package包/类
/**
 * Construct a new regular expression filter with the specified flags case sensitivity.
 * 
 * @param pattern
 *          regular string expression to match
 * @param caseSensitivity
 *          how to handle case sensitivity, null means case-sensitive
 * @throws IllegalArgumentException
 *           if the pattern is null
 */
public RegexFileFilter(String pattern, IOCase caseSensitivity) {
  if (pattern == null) {
    throw new IllegalArgumentException("Pattern is missing");
  }
  int flags = 0;
  if (caseSensitivity != null && !caseSensitivity.isCaseSensitive()) {
    flags = Pattern.CASE_INSENSITIVE;
  }
  this.pattern = Pattern.compile(pattern, flags);
}
 
开发者ID:ClearTK,项目名称:cleartk,代码行数:21,代码来源:RegexFileFilter.java


注:本文中的org.apache.commons.io.IOCase.isCaseSensitive方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。