Uses of Class
org.marketcetera.util.misc.UCPFilter
-
Packages that use UCPFilter Package Description org.marketcetera.util.misc Miscellaneous general-purpose utilities. -
-
Uses of UCPFilter in org.marketcetera.util.misc
Subclasses of UCPFilter in org.marketcetera.util.misc Modifier and Type Class Description private static classUCPFilter.UCPCharsetFilterA filter for Unicode characters that can be encoded by a specific charset.Fields in org.marketcetera.util.misc declared as UCPFilter Modifier and Type Field Description static UCPFilterUCPFilter. ALNUMA filter for Unicode code points that are letters or digits.static UCPFilterUCPFilter. CHARA filter for Unicode characters that can be represented by a single char.static UCPFilterUCPFilter. DIGITA filter for Unicode code points that are digits.static UCPFilterUCPFilter. LETTERA filter for Unicode code points that are letters.static UCPFilterUCPFilter. VALIDA filter for Unicode characters deemed valid byStringUtils.isValid(int).Fields in org.marketcetera.util.misc with type parameters of type UCPFilter Modifier and Type Field Description private static HashMap<Charset,UCPFilter>UCPFilter. mMapprivate static HashMap<UCPFilter,UCPFilterInfo>UCPFilterInfo. mMapMethods in org.marketcetera.util.misc that return UCPFilter Modifier and Type Method Description static UCPFilterUCPFilter. forCharset(Charset cs)Returns a filter for Unicode code points that can be encoded by the given charset.static UCPFilterUCPFilter. getDefaultCharset()Returns a filter for Unicode code points that can be encoded by the default JVM charset.static UCPFilterUCPFilter. getFileSystemCharset()Returns a filter for Unicode code points that can be encoded by the current system file encoding/charset (as specified in the system propertyfile.encoding).Methods in org.marketcetera.util.misc with parameters of type UCPFilter Modifier and Type Method Description static StringRandomStrings. genStr(UCPFilter filter, int len)Returns a generated string of the given length whose characters are all Unicode code points that meet the constraints of the given filter.static intRandomStrings. genUCP(UCPFilter filter)Returns a randomly generated Unicode code point that meets the constraints of the given filter.static UCPFilterInfoUCPFilterInfo. getInfo(UCPFilter filter)Returns the meta-information holder for the given filter.Constructors in org.marketcetera.util.misc with parameters of type UCPFilter Constructor Description UCPFilterInfo(UCPFilter filter)Creates a new meta-information holder for the given filter.
-