Package com.ibm.icu.text
Interface Transform<S,D>
-
- All Known Subinterfaces:
StringTransform
- All Known Implementing Classes:
AnyTransliterator
,AnyTransliterator
,BreakTransliterator
,CaseFoldTransliterator
,CompoundTransliterator
,EscapeTransliterator
,LowercaseTransliterator
,NameUnicodeTransliterator
,NormalizationTransliterator
,NormalizationTransliterator.NormalizingTransform
,NullTransliterator
,RemoveTransliterator
,RuleBasedTransliterator
,TitlecaseTransliterator
,Transliterator
,UnescapeTransliterator
,UnicodeMap
,UnicodeNameTransliterator
,UnicodeRegex
,UppercaseTransliterator
public interface Transform<S,D>
Provide an interface for Transforms that focuses just on the transformation of the text. APIs that take Transliterator or StringTransform, but only depend on the transformation should use this interface in the API instead.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description D
transform(S source)
Transform the input in some way, to be determined by the subclass.
-