- print(char) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prints a character.
- print(int) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prints an integer (int
)
- print(boolean) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prints a boolean (boolean
)
- print(long) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prints a long integer (long
)
- print(float) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prints a single-precision floating point number (float
)
- print(double) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prints a double-precision flooating point number (double
)
- print(Object) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prints the String
representation of an object
- print(String) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prints a character string (String
)
- println(char) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prints a single character (char
) followed by a newline.
- println(boolean) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prints a boolean (boolean
) followed by a newline.
- println(int) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prints an integer (int
) followed by a newline.
- println(long) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prints a long integer (long
) followed by a newline.
- println(float) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prints a single-precision floating point number (float
)
followed by a newline.
- println(double) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prints a double-precision floating point number (double
)
followed by a newline.
- println(Object) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prints the String
representation of an object
followed by a newline.
- println(String) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prints a character string (String
)
followed by a newline.
- println() - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prints a new line.
- setColor(int, int, int) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Sets the color of the subsequent drawing operations.
- setGray(int) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Sets the color of the subsequent drawing operations to be grey.
- startDrawings() - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prepares a drawing zone of size 200x200.
- startDrawings(int, int) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Prepares a drawing zone of arbitrary size.
- stopDrawings() - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Closes the drawing window.
- STREAM_ERROR - Static variable in class uk.ac.rhul.cs.oo.Rhul
-
Reading the input stream was impossible.
- stringToBoolean(String) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Converts a character string into a boolean
.
- stringToByte(String) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Converts a character string into a byte
.
- stringToDouble(String) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Converts a character string into a double
.
- stringToFloat(String) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Converts a character string into a float
.
- stringToInt(String) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Converts a character string into an int
.
- stringToLong(String) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Converts a character string into a long
.
- subString(String, int, int) - Static method in class uk.ac.rhul.cs.oo.Rhul
-
Extracts a substring from a given character string.