All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.bild.codec.EnumCodecProvider Maven / Gradle / Ivy

Go to download

A very fast POJO codec for MongoDB (used in conjunction with the Mongo Java Driver) that handles generic types as well as polymorphic class hierarchies

There is a newer version: 2.8.2
Show newest version
package de.bild.codec;

import org.bson.codecs.Codec;
import org.bson.codecs.configuration.CodecProvider;
import org.bson.codecs.configuration.CodecRegistry;

public class EnumCodecProvider implements CodecProvider {
    @Override
    public  Codec get(Class clazz, CodecRegistry registry) {
        if (clazz.isEnum()) {
            return new EnumCodec(clazz);
        }
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy