Package com.evolveum.midpoint.common
Class Utils
- java.lang.Object
-
- com.evolveum.midpoint.common.Utils
-
public class Utils extends Object
- Author:
- Igor Farinic, Radovan Semancik
-
-
Constructor Summary
Constructors Constructor Description Utils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static String
cleanupUtf(String bad)
Removing non-printable UTF characters from the string.static String
getPropertyName(String name)
static boolean
isValidXmlCodepoint(int cp)
According to XML specification, section 2.2: http://www.w3.org/TR/REC-xml/
-
-
-
Method Detail
-
cleanupUtf
public static String cleanupUtf(String bad)
Removing non-printable UTF characters from the string.This is not really used now. It was done as a kind of prototype for filters. But may come handy and it in fact tests that the pattern is doing what expected, so it may be useful.
- Parameters:
bad
- string with bad chars- Returns:
- string without bad chars
-
isValidXmlCodepoint
public static boolean isValidXmlCodepoint(int cp)
According to XML specification, section 2.2: http://www.w3.org/TR/REC-xml/
-
-