Class EnumSetSerializer

java.lang.Object
com.esotericsoftware.kryo.Serializer<com.github.tommyettinger.ds.EnumSet>
com.github.tommyettinger.kryo.jdkgdxds.EnumSetSerializer

public class EnumSetSerializer extends com.esotericsoftware.kryo.Serializer<com.github.tommyettinger.ds.EnumSet>
Kryo Serializer for jdkgdxds EnumSets. Requires the type of any enum values that are contained in an EnumSet to also be registered.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    com.github.tommyettinger.ds.EnumSet
    copy(com.esotericsoftware.kryo.Kryo kryo, com.github.tommyettinger.ds.EnumSet original)
     
    com.github.tommyettinger.ds.EnumSet
    read(com.esotericsoftware.kryo.Kryo kryo, com.esotericsoftware.kryo.io.Input input, Class<? extends com.github.tommyettinger.ds.EnumSet> dataClass)
     
    void
    write(com.esotericsoftware.kryo.Kryo kryo, com.esotericsoftware.kryo.io.Output output, com.github.tommyettinger.ds.EnumSet data)
     

    Methods inherited from class com.esotericsoftware.kryo.Serializer

    getAcceptsNull, isImmutable, setAcceptsNull, setImmutable

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

  • Method Details

    • write

      public void write(com.esotericsoftware.kryo.Kryo kryo, com.esotericsoftware.kryo.io.Output output, com.github.tommyettinger.ds.EnumSet data)
      Specified by:
      write in class com.esotericsoftware.kryo.Serializer<com.github.tommyettinger.ds.EnumSet>
    • read

      public com.github.tommyettinger.ds.EnumSet read(com.esotericsoftware.kryo.Kryo kryo, com.esotericsoftware.kryo.io.Input input, Class<? extends com.github.tommyettinger.ds.EnumSet> dataClass)
      Specified by:
      read in class com.esotericsoftware.kryo.Serializer<com.github.tommyettinger.ds.EnumSet>
    • copy

      public com.github.tommyettinger.ds.EnumSet copy(com.esotericsoftware.kryo.Kryo kryo, com.github.tommyettinger.ds.EnumSet original)
      Overrides:
      copy in class com.esotericsoftware.kryo.Serializer<com.github.tommyettinger.ds.EnumSet>