uk.co.real_logic.artio.messages.GroupSizeEncodingEncoder 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;
/**
* Repeating group dimensions
*/
@SuppressWarnings("all")
public final class GroupSizeEncodingEncoder
{
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 = 3;
public static final java.nio.ByteOrder BYTE_ORDER = java.nio.ByteOrder.LITTLE_ENDIAN;
private int offset;
private MutableDirectBuffer buffer;
public GroupSizeEncodingEncoder 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 blockLengthEncodingOffset()
{
return 0;
}
public static int blockLengthEncodingLength()
{
return 2;
}
public static int blockLengthNullValue()
{
return 65535;
}
public static int blockLengthMinValue()
{
return 0;
}
public static int blockLengthMaxValue()
{
return 65534;
}
public GroupSizeEncodingEncoder blockLength(final int value)
{
buffer.putShort(offset + 0, (short)value, BYTE_ORDER);
return this;
}
public static int numInGroupEncodingOffset()
{
return 2;
}
public static int numInGroupEncodingLength()
{
return 1;
}
public static short numInGroupNullValue()
{
return (short)255;
}
public static short numInGroupMinValue()
{
return (short)0;
}
public static short numInGroupMaxValue()
{
return (short)254;
}
public GroupSizeEncodingEncoder numInGroup(final short value)
{
buffer.putByte(offset + 2, (byte)value);
return this;
}
public String toString()
{
if (null == buffer)
{
return "";
}
return appendTo(new StringBuilder()).toString();
}
public StringBuilder appendTo(final StringBuilder builder)
{
if (null == buffer)
{
return builder;
}
final GroupSizeEncodingDecoder decoder = new GroupSizeEncodingDecoder();
decoder.wrap(buffer, offset);
return decoder.appendTo(builder);
}
}