コード例 #1
0
 Object writeReplace() throws ObjectStreamException {
   if (SerializeControl.isVanillaCollections()) {
     return set;
   }
   return this;
 }
コード例 #2
0
 Object readResolve() throws ObjectStreamException {
   if (SerializeControl.isVanillaCollections()) {
     return set;
   }
   return this;
 }