public static OBinarySerializerFactory create(int binaryFormatVersion) {
final OBinarySerializerFactory factory = new OBinarySerializerFactory();
// STATELESS SERIALIER
factory.registerSerializer(new ONullSerializer(), null);
factory.registerSerializer(OBooleanSerializer.INSTANCE, OType.BOOLEAN);
factory.registerSerializer(OIntegerSerializer.INSTANCE, OType.INTEGER);
factory.registerSerializer(OShortSerializer.INSTANCE, OType.SHORT);
factory.registerSerializer(OLongSerializer.INSTANCE, OType.LONG);