C E G 

C

CS50 - Class in edu.harvard
 

E

edu.harvard - package edu.harvard
 
eprintf(String, Object...) - Static method in class edu.harvard.CS50
Prints an error message, formatted like PrintStream.printf(java.lang.String, java.lang.Object...), to standard error, prefixing it with program's name as well as the file and line number from which method was called.

G

getChar(String) - Static method in class edu.harvard.CS50
Reads a line of text from standard input and returns the equivalent char; if text does not represent a char, user is prompted to retry.
getDouble(String) - Static method in class edu.harvard.CS50
Reads a line of text from standard input and returns the equivalent double as precisely as possible; if text does not represent a double or if value would cause underflow or overflow, user is prompted to retry.
getFloat(String) - Static method in class edu.harvard.CS50
Reads a line of text from standard input and returns the equivalent float as precisely as possible; if text does not represent a float or if value would cause underflow or overflow, user is prompted to retry.
getInt(String) - Static method in class edu.harvard.CS50
Reads a line of text from standard input and returns it as an int in [-231, 231 - 1) if possible; if text does not represent such an int or if value would cause underflow or overflow, user is prompted to retry.
getLong(String) - Static method in class edu.harvard.CS50
Reads a line of text from standard input and returns an equivalent long in [-263, 263 - 1) if possible; if text does not represent such a long or if value would cause underflow or overflow, user is prompted to retry.
getString(String) - Static method in class edu.harvard.CS50
Reads a line of text from standard input and returns it as a String, sans trailing line ending.
C E G