Method writeBoolean(boolean v)
Return type: void
Member of:
java.io.DataOutputStream
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
out.writeBoolean(false);
2
writeBoolean(o.booleanValue());
3
dout.writeBoolean( b );
4
dos.writeBoolean(v);
5
out.writeBoolean(((Boolean) b).booleanValue()) ;
6
out.writeBoolean(value);
7
dout.writeBoolean(hitTable[i]);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.