-
be.bagofwords.util.WrappedSocketConnection.writeString()
-
bear.plugins.sh.SystemSession.writeString()
-
bm.core.io.SerializerOutputStream.writeString()
-
ch.ethz.ssh2.packets.TypesWriter.writeString()
-
co.cask.cdap.common.io.BinaryEncoder.writeString()
-
co.cask.cdap.common.io.Encoder.writeString()
-
co.cask.tigon.io.BinaryEncoder.writeString()
-
co.cask.tigon.io.Encoder.writeString()
-
co.cask.tigon.sql.io.GDATEncoder.writeString()
-
codechicken.lib.packet.PacketCustom.writeString()
-
com.alibaba.druid.support.json.JSONWriter.writeString()
-
com.alibaba.fastjson.serializer.SerializeWriter.writeString()
-
com.caucho.hessian.io.Hessian2Output.writeString()
Writes a string value to the stream using UTF-8 encoding. The string will be written with the following syntax:
S b16 b8 string-value
If the value is null, it will be written as
N
@param value the string value to write.
-
com.esotericsoftware.kryo.io.Output.writeString()
Writes the length and string, or null. Short strings are checked and if ASCII they are written more efficiently, else they are written as UTF8. If a string is known to be ASCII, {@link #writeAscii(String)} may be used. The string can be read using{@link Input#readString()} or {@link Input#readStringBuilder()}.
@param value May be null.
-
com.esotericsoftware.kryo.io.UnsafeMemoryOutput.writeString()
-
com.esotericsoftware.kryo.io.UnsafeOutput.writeString()
-
com.facebook.presto.hive.shaded.org.apache.thrift.protocol.TTupleProtocol.writeString()
-
com.facebook.presto.hive.shaded.org.codehaus.jackson.util.TokenBuffer.writeString()
-
com.facebook.presto.jdbc.internal.jackson.databind.util.TokenBuffer.writeString()
-
com.facebook.thrift.protocol.TProtocol.writeString()
-
com.fasterxml.jackson.core.JsonGenerator.writeString()
Method for outputting a String value. Depending on context this means either array element, (object) field value or a stand alone String; but in all cases, String will be surrounded in double quotes, and contents will be properly escaped as required by JSON specification.
-
com.fasterxml.jackson.databind.util.TokenBuffer.writeString()
-
com.fasterxml.jackson.dataformat.xml.ser.ToXmlGenerator.writeString()
-
com.google.gwt.user.client.rpc.SerializationStreamWriter.writeString()
-
com.google.protobuf.CodedOutputStream.writeString()
Write a {@code string} field, including tag, to the stream.
-
com.ibm.mq.MQMessage.writeString()
-
com.impossibl.postgres.api.jdbc.PGSQLOutput.writeString()
-
com.maverick.util.ByteArrayWriter.writeString()
Write a string to the byte array.
@param str
@throws IOException
-
com.orientechnologies.orient.enterprise.channel.binary.OChannelBinaryAsynchClient.writeString()
-
com.orientechnologies.orient.enterprise.channel.binary.OChannelBinaryClient.writeString()
-
com.sleepycat.bdb.bind.tuple.TupleOutput.writeString()
Writes the specified characters to the buffer, converting each character to UTF format, and adding a null terminator byte. Writes values that can be read using {@link TupleInput#readString()}.
@param val is the string containing the characters to be written.
@throws IOException is never thrown but is declared for compatibilitywith {java.io.OutputStream#write}.
-
com.sleepycat.bind.tuple.TupleOutput.writeString()
Writes the specified characters to the buffer, converting each character to UTF format, and adding a null terminator byte. Writes values that can be read using {@link TupleInput#readString()}.
@param val is the string containing the characters to be written.
@return this tuple output object.
@see
String Formats
-
com.sshtools.j2ssh.io.ByteArrayWriter.writeString()
@param str
@throws IOException
-
com.trilead.ssh2.packets.TypesWriter.writeString()
-
com.trulytech.mantis.util.ExcelWriter.writeString()
-
davaguine.jmac.tools.ByteArrayWriter.writeString()
-
gnu.javax.crypto.key.OutgoingMessage.writeString()
-
hprose.io.HproseWriter.writeString()
-
htsjdk.tribble.util.LittleEndianOutputStream.writeString()
-
java.nio.ByteBuffer.writeString()
-
javax.jms.StreamMessage.writeString()
-
net.sf.jpluck.palm.PdbOutputStream.writeString()
Writes a String in the default encoding
-
net.timewalker.ffmq3.common.message.StreamMessageImpl.writeString()
-
org.activemq.message.ActiveMQStreamMessage.writeString()
Writes a String
to the stream message.
@param value the String
value to be written
@throws JMSException if the JMS provider fails to write the messagedue to some internal error.
@throws MessageNotWriteableException if the message is in read-onlymode.
-
org.apache.activemq.command.ActiveMQStreamMessage.writeString()
Writes a String
to the stream message.
@param value the String
value to be written
@throws JMSException if the JMS provider fails to write the message dueto some internal error.
@throws MessageNotWriteableException if the message is in read-only mode.
-
org.apache.avro.io.BinaryEncoder.writeString()
-
org.apache.avro.io.Encoder.writeString()
Write a Unicode character string.
@throws AvroTypeException If this is a stateful writer and achar-string is not expected
-
org.apache.blur.thirdparty.thrift_0_9_0.protocol.TTupleProtocol.writeString()
Write a string to the wire with a varint size preceding.
-
org.apache.hadoop.hive.serde2.thrift.TCTLSeparatedProtocol.writeString()
-
org.apache.hadoop.oncrpc.XDR.writeString()
Write Java String as XDR string. Definition of XDR string from RFC 4506:
The standard defines a string of n (numbered 0 through n-1) ASCII bytes to be the number n encoded as an unsigned integer (as described above), and followed by the n bytes of the string. Byte m of the string always precedes byte m+1 of the string, and byte 0 of the string always follows the string's length. If n is not a multiple of four, then the n bytes are followed by enough (0 to 3) residual zero bytes, r, to make the total byte count a multiple of four. Counted byte strings are declared as follows: string object; or string object<>; The constant m denotes an upper bound of the number of bytes that a string may contain. If m is not specified, as in the second declaration, it is assumed to be (2**32) - 1, the maximum length. The constant m would normally be found in a protocol specification. For example, a filing protocol may state that a file name can be no longer than 255 bytes, as follows: string filename<255>; 0 1 2 3 4 5 ... +-----+-----+-----+-----+-----+-----+...+-----+-----+...+-----+ | length n |byte0|byte1|...| n-1 | 0 |...| 0 | +-----+-----+-----+-----+-----+-----+...+-----+-----+...+-----+ |<-------4 bytes------->|<------n bytes------>|<---r bytes--->| |<----n+r (where (n+r) mod 4 = 0)---->| STRING It is an error to encode a length greater than the maximum described in the specification.
-
org.apache.jackrabbit.core.journal.Record.writeString()
Write a string to the underlying stream.
@param s string, may be null
@throws JournalException if an error occurs
-
org.apache.jackrabbit.oak.plugins.segment.SegmentWriter.writeString()
Writes a string value record.
@param string string to be written
@return value record identifier
-
org.apache.jute.BinaryOutputArchive.writeString()
-
org.apache.jute.OutputArchive.writeString()
-
org.apache.jute_voltpatches.OutputArchive.writeString()
-
org.apache.lucene.store.ChecksumIndexOutput.writeString()
-
org.apache.lucene.store.DataOutput.writeString()
Writes a string.
@see DataInput#readString()
-
org.apache.lucene.store.IndexOutput.writeString()
Writes a string.
@see IndexInput#readString()
-
org.apache.lucene.store.OutputStream.writeString()
Writes a string.
@see InputStream#readString()
-
org.apache.lucene.store.OutputStreamDataOutput.writeString()
-
org.apache.lucene.util.PagedBytes.PagedBytesDataOutput.writeString()
-
org.apache.qpid.client.message.JMSStreamMessage.writeString()
-
org.apache.thrift.protocol.TBinaryProtocol.writeString()
-
org.apache.thrift.protocol.TProtocol.writeString()
-
org.apache.thrift.protocol.TTupleProtocol.writeString()
-
org.codehaus.activemq.message.ActiveMQStreamMessage.writeString()
Writes a String
to the stream message.
@param value the String
value to be written
@throws JMSException if the JMS provider fails to write the messagedue to some internal error.
@throws MessageNotWriteableException if the message is in read-onlymode.
-
org.codehaus.jackson.JsonGenerator.writeString()
Method for outputting a String value. Depending on context this means either array element, (object) field value or a stand alone String; but in all cases, String will be surrounded in double quotes, and contents will be properly escaped as required by JSON specification.
-
org.codehaus.jackson.util.TokenBuffer.writeString()
-
org.eclipse.jgit.transport.PacketLineOut.writeString()
Write a UTF-8 encoded string as a single length-delimited packet.
@param s string to write.
@throws IOException the packet could not be written, the stream is corrupted as the packet may have been only partially written.
-
org.elasticsearch.common.io.stream.BytesStreamOutput.writeString()
-
org.elasticsearch.common.io.stream.HandlesStreamOutput.writeString()
-
org.elasticsearch.common.io.stream.StreamOutput.writeString()
-
org.exoplatform.services.jcr.dataflow.serialization.ObjectWriter.writeString()
Writes a string. String transformed to bytes using Constants.DEFAULT_ENCODING.
@param str - String.
@throws IOException If an I/O error has occurred.
-
org.exoplatform.services.jcr.impl.dataflow.serialization.ObjectWriterImpl.writeString()
{@inheritDoc}
-
org.farng.mp3.object.ObjectLyrics3Image.writeString()
-
org.farng.mp3.object.ObjectLyrics3Line.writeString()
-
org.gradle.messaging.serialize.FlushableEncoder.writeString()
-
org.gradle.messaging.serialize.OutputStreamBackedEncoder.writeString()
-
org.h2.store.Data.writeString()
Write a String. The current position is incremented.
@param s the value
-
org.h2.value.Transfer.writeString()
Write a string. The maximum string length is Integer.MAX_VALUE.
@param s the value
@return itself
-
org.hornetq.api.core.HornetQBuffer.writeString()
Sets the specified non-null String at the current {@code writerIndex}
-
org.hornetq.jms.client.HornetQStreamMessage.writeString()
-
org.hornetq.jms.tests.message.SimpleJMSStreamMessage.writeString()
-
org.jaudiotagger.tag.datatype.Lyrics3Image.writeString()
@return
-
org.jaudiotagger.tag.datatype.Lyrics3Line.writeString()
@return
-
org.jboss.dmr.ModelNode.writeString()
-
org.jboss.jms.message.JBossStreamMessage.writeString()
-
org.jboss.test.messaging.jms.message.SimpleJMSStreamMessage.writeString()
-
org.lealone.value.Transfer.writeString()
Write a string. The maximum string length is Integer.MAX_VALUE.
@param s the value
@return itself
-
org.msgpack.packer.BufferPacker.writeString()
-
org.msgpack.packer.Packer.writeString()
-
org.msgpack.packer.Unconverter.writeString()
-
org.red5.io.amf.Output.writeString()
{@inheritDoc}
-
org.sonar.batch.symbol.SymbolData.writeString()
-
org.voltdb.messaging.FastSerializer.writeString()
Write a string in the standard VoltDB way without wrapping the byte buffer.
-
promauto.utils.RpSerialPort.writeString()
Writes a string to the output buffer
@param data
@return
-
pt.opensoft.io.VariableSizeWriter.writeString()
-
research.store.StorableOutput.writeString()
Writes a string to the output stream. Special characters are quoted.
-
streamer.ByteBuffer.writeString()
Write byte representation of given string, without string terminators (zero or zeroes at end of string).
-
uk.ac.ucl.panda.utility.io.IndexOutput.writeString()
Writes a string.
@see IndexInput#readString()