b3.entrypoint.fixp.sbe.CustodianInfoEncoder Maven / Gradle / Ivy
/* Generated SBE (Simple Binary Encoding) message codec. */
package b3.entrypoint.fixp.sbe;
import org.agrona.MutableDirectBuffer;
import org.agrona.sbe.*;
/**
* Custodian information is required for going private offer.
*/
@SuppressWarnings("all")
public final class CustodianInfoEncoder implements CompositeEncoderFlyweight
{
public static final int SCHEMA_ID = 1;
public static final int SCHEMA_VERSION = 5;
public static final String SEMANTIC_VERSION = "5.6";
public static final int ENCODED_LENGTH = 12;
public static final java.nio.ByteOrder BYTE_ORDER = java.nio.ByteOrder.LITTLE_ENDIAN;
private int offset;
private MutableDirectBuffer buffer;
public CustodianInfoEncoder 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 custodianEncodingOffset()
{
return 0;
}
public static int custodianEncodingLength()
{
return 4;
}
public static long custodianNullValue()
{
return 0L;
}
public static long custodianMinValue()
{
return 0L;
}
public static long custodianMaxValue()
{
return 4294967294L;
}
public CustodianInfoEncoder custodian(final long value)
{
buffer.putInt(offset + 0, (int)value, BYTE_ORDER);
return this;
}
public static int custodyAccountEncodingOffset()
{
return 4;
}
public static int custodyAccountEncodingLength()
{
return 4;
}
public static long custodyAccountNullValue()
{
return 0L;
}
public static long custodyAccountMinValue()
{
return 0L;
}
public static long custodyAccountMaxValue()
{
return 4294967294L;
}
public CustodianInfoEncoder custodyAccount(final long value)
{
buffer.putInt(offset + 4, (int)value, BYTE_ORDER);
return this;
}
public static int custodyAllocationTypeEncodingOffset()
{
return 8;
}
public static int custodyAllocationTypeEncodingLength()
{
return 4;
}
public static long custodyAllocationTypeNullValue()
{
return 0L;
}
public static long custodyAllocationTypeMinValue()
{
return 0L;
}
public static long custodyAllocationTypeMaxValue()
{
return 4294967294L;
}
public CustodianInfoEncoder custodyAllocationType(final long value)
{
buffer.putInt(offset + 8, (int)value, BYTE_ORDER);
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 CustodianInfoDecoder decoder = new CustodianInfoDecoder();
decoder.wrap(buffer, offset);
return decoder.appendTo(builder);
}
}