We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8be4bcc commit e8d9a1aCopy full SHA for e8d9a1a
bson/src/main/org/bson/codecs/EnumCodec.java
@@ -28,6 +28,11 @@
28
public final class EnumCodec<T extends Enum<T>> implements Codec<T> {
29
private final Class<T> clazz;
30
31
+ /**
32
+ * Construct an instance for teh given enum class.
33
+ *
34
+ * @param clazz the enum class
35
+ */
36
public EnumCodec(final Class<T> clazz) {
37
this.clazz = clazz;
38
}
0 commit comments