| Package | Description |
|---|---|
| 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 Util Lang 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. |
| net.sf.mmm.util.version.impl |
Contains the implementation of the
Version API. |
| Modifier and Type | Field and Description |
|---|---|
static CharFilter |
CharFilter.ACCEPT_ALL_FILTER
A filter that
accepts any charater. |
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.FILE_SEPARATOR_FILTER
A filter that only
accepts the file separator characters '/' and '\\'. |
static CharFilter |
CharFilter.IDENTIFIER_FILTER
A filter that only
accepts characters valid for a technical identifier-string (e.g. |
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. |
| Modifier and Type | Class and Description |
|---|---|
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. |
| Modifier and Type | Field and Description |
|---|---|
private CharFilter[] |
ConjunctionCharFilter.filterList
the filters to check.
|
| Constructor and Description |
|---|
ConjunctionCharFilter(Conjunction conjunction,
CharFilter... filters)
The constructor.
|
| Modifier and Type | Field and Description |
|---|---|
private CharFilter |
SpaceNormalizingCharIterator.spaceFilter
|
| Constructor and Description |
|---|
SpaceNormalizingCharIterator(CharIterator delegate,
CharFilter spaceFilter,
boolean trim)
The constructor.
|
| Modifier and Type | Field and Description |
|---|---|
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 '}'.
|
| Modifier and Type | Field and Description |
|---|---|
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. |
| Modifier and Type | Field and Description |
|---|---|
private static CharFilter |
ReflectionUtilImpl.CHAR_FILTER |
| Modifier and Type | Method and Description |
|---|---|
String |
CharStreamScanner.readUntil(CharFilter filter,
boolean acceptEof)
This method reads all
next characters until the first character
accepted by the given filter or the end is reached. |
String |
CharStreamScanner.readWhile(CharFilter filter)
|
String |
CharStreamScanner.readWhile(CharFilter filter,
int max)
|
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)
|
int |
CharStreamScanner.skipWhile(CharFilter filter,
int max)
|
| Modifier and Type | Method and Description |
|---|---|
String |
CharSequenceScanner.readUntil(CharFilter filter,
boolean acceptEof)
This method reads all
next characters until the first character
accepted by the given filter or the end is reached. |
String |
CharSequenceScanner.readWhile(CharFilter filter)
|
String |
CharSequenceScanner.readWhile(CharFilter filter,
int max)
|
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)
|
int |
CharSequenceScanner.skipWhile(CharFilter filter,
int max)
|
| Modifier and Type | Field and Description |
|---|---|
private static CharFilter |
VersionUtilImpl.INFIX_FILTER
A
CharFilter that accepts all but ASCII letters. |
private static CharFilter |
VersionUtilImpl.LETTER_FILTER
A
CharFilter that accepts all but separators and digits. |
private static CharFilter |
VersionUtilImpl.SEPARATOR_FILTER
A
CharFilter that accepts common separators. |
Copyright © 2001–2015 mmm-Team. All rights reserved.