Interface StringPreparation
-
- All Known Implementing Classes:
StringPreparations
public interface StringPreparation
Interface for all possible String Preparations mechanisms.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
normalize(java.lang.String value)
Normalize a UTF-8 String according to this String Preparation rules.
-
-
-
Method Detail
-
normalize
java.lang.String normalize(java.lang.String value) throws java.lang.IllegalArgumentException
Normalize a UTF-8 String according to this String Preparation rules.- Parameters:
value
- The String to prepare- Returns:
- The prepared String
- Throws:
java.lang.IllegalArgumentException
- If the String to prepare is not valid.
-
-