Uses of Interface
net.sf.mmm.util.filter.api.CharFilter

Packages that use CharFilter
net.sf.mmm.util.filter.api Provides the API for generic filtering. 
net.sf.mmm.util.filter.base Contains public implementations of the filtering-API
net.sf.mmm.util.lang.base Contains the basic implementation of the Lang-Util API
net.sf.mmm.util.nls.base Contains the basis for implementations of the native language support (NLS) API. 
net.sf.mmm.util.nls.impl.formatter Contains the implementation of formatters for the native language support (NLS). 
net.sf.mmm.util.reflect.base Contains the base-implementations of the Reflection-Util API
net.sf.mmm.util.scanner.api Provides the API for scanners that help to parse character sequences efficient and easily. 
net.sf.mmm.util.scanner.base Contains the base-implementations of the Character Scanner API
 

Uses of CharFilter in net.sf.mmm.util.filter.api
 

Fields in net.sf.mmm.util.filter.api declared as CharFilter
static CharFilter CharFilter.ASCII_LETTER_FILTER
          A filter that only accepts the Latin ASCII letters 'a'-'z' and 'A'-'Z'.
static CharFilter CharFilter.ASCII_LOWER_CASE_LETTER_FILTER
          A filter that only accepts the lower case Latin ASCII letters 'a'-'z'.
static CharFilter CharFilter.ASCII_UPPER_CASE_LETTER_FILTER
          A filter that only accepts the upper case Latin ASCII letters 'A'-'Z'.
static CharFilter CharFilter.IDENTIFIER_FILTER
          A filter that only accepts characters valid for a technical identifier-string (e.g. literal oder variable-name).
static CharFilter CharFilter.LATIN_DIGIT_FILTER
          A filter that only accepts the Latin digits '0'-'9'.
static CharFilter CharFilter.LATIN_DIGIT_OR_LETTER_FILTER
          A filter that only accepts the Latin digits '0'-'9' or ASCII letters 'a'-'z' and 'A'-'Z'.
static CharFilter CharFilter.WHITESPACE_FILTER
          A filter that accepts only whitespaces.
 

Uses of CharFilter in net.sf.mmm.util.filter.base
 

Classes in net.sf.mmm.util.filter.base that implement CharFilter
 class ConjunctionCharFilter
          This is an implementation of the CharFilter interface that combines a given list of filters using a boolean Conjunction.
 class ListCharFilter
          This is an implementation of the CharFilter interface that filters characters according to a given blacklist or whitelist.
 

Fields in net.sf.mmm.util.filter.base declared as CharFilter
private  CharFilter[] ConjunctionCharFilter.filterList
          the filters to check.
 

Constructors in net.sf.mmm.util.filter.base with parameters of type CharFilter
ConjunctionCharFilter(Conjunction conjunction, CharFilter... filters)
          The constructor.
 

Uses of CharFilter in net.sf.mmm.util.lang.base
 

Fields in net.sf.mmm.util.lang.base declared as CharFilter
private  CharFilter SpaceNormalizingCharIterator.spaceFilter
          SpaceNormalizingCharIterator.SpaceNormalizingCharIterator(CharIterator, CharFilter, boolean)
 

Constructors in net.sf.mmm.util.lang.base with parameters of type CharFilter
SpaceNormalizingCharIterator(CharIterator delegate, CharFilter spaceFilter, boolean trim)
          The constructor.
 

Uses of CharFilter in net.sf.mmm.util.nls.base
 

Fields in net.sf.mmm.util.nls.base declared as CharFilter
protected static CharFilter AbstractNlsFormatterManager.NO_COMMA_OR_END_EXPRESSION
          A char filter that accepts everything except ',' and '}'.
protected static CharFilter AbstractNlsFormatterManager.NO_EXPRESSION
          A char filter that accepts everything except ',' and '}'.
 

Uses of CharFilter in net.sf.mmm.util.nls.impl.formatter
 

Fields in net.sf.mmm.util.nls.impl.formatter declared as CharFilter
private static CharFilter NlsFormatterChoice.FILTER_COMPARATOR
          The CharFilter for the comparator symbol .
private static CharFilter NlsFormatterChoice.FILTER_COMPARATOR_ARGUMENT
          The CharFilter for the comparator argument.
 

Uses of CharFilter in net.sf.mmm.util.reflect.base
 

Fields in net.sf.mmm.util.reflect.base declared as CharFilter
private static CharFilter ReflectionUtilImpl.CHAR_FILTER
           
 

Uses of CharFilter in net.sf.mmm.util.scanner.api
 

Methods in net.sf.mmm.util.scanner.api with parameters of type CharFilter
 String CharStreamScanner.readWhile(CharFilter filter)
          This method reads all next characters that are accepted by the given filter.
 String CharStreamScanner.readWhile(CharFilter filter, int max)
          This method reads all next characters that are accepted by the given filter.
 boolean CharStreamScanner.skipOver(String substring, boolean ignoreCase, CharFilter stopFilter)
          This method reads all next characters until the given substring has been detected.
 int CharStreamScanner.skipWhile(CharFilter filter)
          This method reads all next characters that are accepted by the given filter.
 int CharStreamScanner.skipWhile(CharFilter filter, int max)
          This method reads all next characters that are accepted by the given filter.
 

Uses of CharFilter in net.sf.mmm.util.scanner.base
 

Methods in net.sf.mmm.util.scanner.base with parameters of type CharFilter
 String CharSequenceScanner.readWhile(CharFilter filter)
          This method reads all next characters that are accepted by the given filter.
 String CharSequenceScanner.readWhile(CharFilter filter, int max)
          This method reads all next characters that are accepted by the given filter.
 boolean CharSequenceScanner.skipOver(String substring, boolean ignoreCase, CharFilter stopFilter)
          This method reads all next characters until the given substring has been detected.
 int CharSequenceScanner.skipWhile(CharFilter filter)
          This method reads all next characters that are accepted by the given filter.
 int CharSequenceScanner.skipWhile(CharFilter filter, int max)
          This method reads all next characters that are accepted by the given filter.
 



Copyright © 2001-2010 mmm-Team. All Rights Reserved.