com.ibm.icu.text
Interface Transform<S,D>
- All Known Subinterfaces:
- StringTransform
- All Known Implementing Classes:
- RuleBasedTransliterator, Transliterator
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.
- Author:
- markdavis
- Status:
- Draft ICU 4.4.
Method Summary |
D |
transform(S source)
Transform the input in some way, to be determined by the subclass. |
transform
D transform(S source)
- Transform the input in some way, to be determined by the subclass.
- Parameters:
source
- to be transformed (eg lowercased)
- Returns:
- result
- Status:
- Draft ICU 4.4.
Copyright (c) 2011 IBM Corporation and others.