Please enable JavaScript to use CodeHS

CodeHS Glossary


Static method Java

A method called on the Class, rather than on a specific object of the Class. The Character class has several static methods, for example. There is no need to create a specific Character object to call these methods, so they are static methods called on the Class level: ``` Character.isDigit('4'); // returns true Character.isLowerCase('A'); // returns false ```