MCPcopy Create free account
hub / github.com/ReadyTalk/avian / print

Method print

classpath/java/io/PrintStream.java:42–47  ·  view source on GitHub ↗
(String s)

Source from the content-addressed store, hash-verified

40 }
41
42 public synchronized void print(String s) {
43 try {
44 out.write(s.getBytes());
45 if (autoFlush) flush();
46 } catch (IOException e) { }
47 }
48
49 public void print(Object o) {
50 print(String.valueOf(o));

Callers 13

storeMethod · 0.95
writeBooleanMethod · 0.45
writeByteMethod · 0.45
writeCharMethod · 0.45
writeShortMethod · 0.45
writeIntMethod · 0.45
writeLongMethod · 0.45
writeFloatMethod · 0.45
writeDoubleMethod · 0.45
writeObjectMethod · 0.45
serializeArrayMethod · 0.45
serializeObjectMethod · 0.45

Calls 4

flushMethod · 0.95
valueOfMethod · 0.95
getBytesMethod · 0.80
writeMethod · 0.65

Tested by

no test coverage detected