
net.openhft.lang.io.serialization.impl.CompactEnumBytesMarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lang Show documentation
Show all versions of lang Show documentation
Java Lang library for High Frequency Trading (Java 6+)
The newest version!
/*
* Copyright (C) 2015 higherfrequencytrading.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package net.openhft.lang.io.serialization.impl;
import net.openhft.lang.io.serialization.CompactBytesMarshaller;
import net.openhft.lang.model.constraints.NotNull;
/**
* Created with IntelliJ IDEA. User: peter.lawrey Date: 09/12/13 Time: 17:05
* Templates.
*/
public class CompactEnumBytesMarshaller extends GenericEnumMarshaller implements CompactBytesMarshaller {
private final byte code;
public CompactEnumBytesMarshaller(@NotNull Class classMarshaled, int capacity, byte code) {
super(classMarshaled, capacity);
this.code = code;
}
@Override
public byte code() {
return code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy