public static class GshExecutor.GshOutput extends Object implements Output
Output to correct a bug where a call
to "println" or "print" with a GString or another object would use
System.out instead of the right output instance.| Modifier and Type | Method and Description |
|---|---|
Appendable |
append(char c) |
Appendable |
append(CharSequence csq) |
Appendable |
append(CharSequence csq,
int start,
int end) |
void |
print(Object object)
Prints an object to the wrapped
Output. |
void |
print(Serializable object)
Prints a line to the output.
|
void |
println()
Prints a new line to the output.
|
void |
println(Object object)
Prints an object to the wrapped
Output. |
void |
println(Serializable object)
Prints a line with new line to the output.
|
public void print(Serializable object) throws RemoteException
Outputprint in interface Outputobject - the object to print (the string representation of it).RemoteException - RMI error.public void println(Serializable object) throws RemoteException
Outputprintln in interface Outputobject - the object to print (the string representation of it).RemoteException - RMI error.public Appendable append(char c) throws IOException
append in interface AppendableIOExceptionpublic Appendable append(CharSequence csq, int start, int end) throws IOException
append in interface AppendableIOExceptionpublic Appendable append(CharSequence csq) throws IOException
append in interface AppendableIOExceptionpublic void print(Object object) throws RemoteException
Output.object - the object to print.RemoteException - RMI error.public void println()
throws RemoteException
Outputprintln in interface OutputRemoteException - RMI error.public void println(Object object) throws RemoteException
Output.object - the object to print.RemoteException - RMI error.Copyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.