uk.co.real_logic.artio.messages.Utf8StringEncoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artio-codecs Show documentation
Show all versions of artio-codecs Show documentation
High-Performance FIX Gateway
/* Generated SBE (Simple Binary Encoding) message codec. */
package uk.co.real_logic.artio.messages;
import org.agrona.MutableDirectBuffer;
@SuppressWarnings("all")
public final class Utf8StringEncoder
{
public static final int SCHEMA_ID = 666;
public static final int SCHEMA_VERSION = 25;
public static final String SEMANTIC_VERSION = "0.2";
public static final int ENCODED_LENGTH = -1;
public static final java.nio.ByteOrder BYTE_ORDER = java.nio.ByteOrder.LITTLE_ENDIAN;
private int offset;
private MutableDirectBuffer buffer;
public Utf8StringEncoder wrap(final MutableDirectBuffer buffer, final int offset)
{
if (buffer != this.buffer)
{
this.buffer = buffer;
}
this.offset = offset;
return this;
}
public MutableDirectBuffer buffer()
{
return buffer;
}
public int offset()
{
return offset;
}
public int encodedLength()
{
return ENCODED_LENGTH;
}
public int sbeSchemaId()
{
return SCHEMA_ID;
}
public int sbeSchemaVersion()
{
return SCHEMA_VERSION;
}
public static int lengthEncodingOffset()
{
return 0;
}
public static int lengthEncodingLength()
{
return 2;
}
public static int lengthNullValue()
{
return 65535;
}
public static int lengthMinValue()
{
return 0;
}
public static int lengthMaxValue()
{
return 65534;
}
public Utf8StringEncoder length(final int value)
{
buffer.putShort(offset + 0, (short)value, BYTE_ORDER);
return this;
}
public static int varDataEncodingOffset()
{
return 2;
}
public static int varDataEncodingLength()
{
return -1;
}
public static short varDataNullValue()
{
return (short)255;
}
public static short varDataMinValue()
{
return (short)0;
}
public static short varDataMaxValue()
{
return (short)254;
}
public String toString()
{
if (null == buffer)
{
return "";
}
return appendTo(new StringBuilder()).toString();
}
public StringBuilder appendTo(final StringBuilder builder)
{
if (null == buffer)
{
return builder;
}
final Utf8StringDecoder decoder = new Utf8StringDecoder();
decoder.wrap(buffer, offset);
return decoder.appendTo(builder);
}
}