Example usage for Java com.lowagie.text Utilities fields, constructors, methods, implement or subclass
The text is from its open source code.
int | convertToUtf32(char highSurrogate, char lowSurrogate) Returns the code point of a UTF32 character corresponding with a high and a low surrogate value. |
int | convertToUtf32(char[] text, int idx) Converts a unicode character in a character array to a UTF 32 code point value. |
int | convertToUtf32(String text, int idx) Converts a unicode character in a String to a UTF32 code point value |
boolean | isSurrogatePair(String text, int idx) Checks if two subsequent characters in a String are are the higher and the lower character in a surrogate pair (and therefore eligible for conversion to a UTF 32 character). |
boolean | isSurrogatePair(char[] text, int idx) Checks if two subsequent characters in a character array are are the higher and the lower character in a surrogate pair (and therefore eligible for conversion to a UTF 32 character). |
float | millimetersToPoints(float value) Measurement conversion from millimeters to points. |
URL | toURL(String filename) This method makes a valid URL from a given filename. |