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 String
normalize(String value)
Normalize a UTF-8 String according to this String Preparation rules.
-
-
-
Method Detail
-
normalize
String normalize(String value) throws IllegalArgumentException
Normalize a UTF-8 String according to this String Preparation rules.- Parameters:
value
- The String to prepare- Returns:
- The prepared String
- Throws:
IllegalArgumentException
- If the String to prepare is not valid.
-
-