Java examples for java.lang:char
Indicates if the given character is a semicolon, the character used as header parameter separator.
//package com.java2s; public class Main { /**/*from ww w. j a v a 2 s . co m*/ * Indicates if the given character is a semicolon, the character used as header parameter separator. * * @param character * The character to test. * @return True if the given character is a semicolon. */ public static boolean isSemiColon(int character) { return (character == ';'); } }