public class org.hibernate.cache.spi.entry.CollectionCacheEntry implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hibernate.cache.spi.entry.CollectionCacheEntry
  super_class: java.lang.Object
{
  private final java.io.Serializable state;
    descriptor: Ljava/io/Serializable;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.hibernate.collection.spi.PersistentCollection, org.hibernate.persister.collection.CollectionPersister);
    descriptor: (Lorg/hibernate/collection/spi/PersistentCollection;Lorg/hibernate/persister/collection/CollectionPersister;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.hibernate.cache.spi.entry.CollectionCacheEntry this
        start local 1 // org.hibernate.collection.spi.PersistentCollection collection
        start local 2 // org.hibernate.persister.collection.CollectionPersister persister
         0: .line 46
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 47
            aload 0 /* this */
            aload 1 /* collection */
            aload 2 /* persister */
            invokeinterface org.hibernate.collection.spi.PersistentCollection.disassemble:(Lorg/hibernate/persister/collection/CollectionPersister;)Ljava/io/Serializable;
            putfield org.hibernate.cache.spi.entry.CollectionCacheEntry.state:Ljava/io/Serializable;
         2: .line 48
            return
        end local 2 // org.hibernate.persister.collection.CollectionPersister persister
        end local 1 // org.hibernate.collection.spi.PersistentCollection collection
        end local 0 // org.hibernate.cache.spi.entry.CollectionCacheEntry this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/hibernate/cache/spi/entry/CollectionCacheEntry;
            0    3     1  collection  Lorg/hibernate/collection/spi/PersistentCollection;
            0    3     2   persister  Lorg/hibernate/persister/collection/CollectionPersister;
    MethodParameters:
            Name  Flags
      collection  
      persister   

  void <init>(java.io.Serializable);
    descriptor: (Ljava/io/Serializable;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.cache.spi.entry.CollectionCacheEntry this
        start local 1 // java.io.Serializable state
         0: .line 50
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 51
            aload 0 /* this */
            aload 1 /* state */
            putfield org.hibernate.cache.spi.entry.CollectionCacheEntry.state:Ljava/io/Serializable;
         2: .line 52
            return
        end local 1 // java.io.Serializable state
        end local 0 // org.hibernate.cache.spi.entry.CollectionCacheEntry this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/hibernate/cache/spi/entry/CollectionCacheEntry;
            0    3     1  state  Ljava/io/Serializable;
    MethodParameters:
       Name  Flags
      state  

  public java.io.Serializable[] getState();
    descriptor: ()[Ljava/io/Serializable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.cache.spi.entry.CollectionCacheEntry this
         0: .line 61
            aload 0 /* this */
            getfield org.hibernate.cache.spi.entry.CollectionCacheEntry.state:Ljava/io/Serializable;
            checkcast java.io.Serializable[]
            areturn
        end local 0 // org.hibernate.cache.spi.entry.CollectionCacheEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/cache/spi/entry/CollectionCacheEntry;

  public void assemble(org.hibernate.collection.spi.PersistentCollection, org.hibernate.persister.collection.CollectionPersister, java.lang.Object);
    descriptor: (Lorg/hibernate/collection/spi/PersistentCollection;Lorg/hibernate/persister/collection/CollectionPersister;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.hibernate.cache.spi.entry.CollectionCacheEntry this
        start local 1 // org.hibernate.collection.spi.PersistentCollection collection
        start local 2 // org.hibernate.persister.collection.CollectionPersister persister
        start local 3 // java.lang.Object owner
         0: .line 75
            aload 1 /* collection */
            aload 2 /* persister */
            aload 0 /* this */
            getfield org.hibernate.cache.spi.entry.CollectionCacheEntry.state:Ljava/io/Serializable;
            aload 3 /* owner */
            invokeinterface org.hibernate.collection.spi.PersistentCollection.initializeFromCache:(Lorg/hibernate/persister/collection/CollectionPersister;Ljava/io/Serializable;Ljava/lang/Object;)V
         1: .line 76
            aload 1 /* collection */
            invokeinterface org.hibernate.collection.spi.PersistentCollection.afterInitialize:()Z
            pop
         2: .line 77
            return
        end local 3 // java.lang.Object owner
        end local 2 // org.hibernate.persister.collection.CollectionPersister persister
        end local 1 // org.hibernate.collection.spi.PersistentCollection collection
        end local 0 // org.hibernate.cache.spi.entry.CollectionCacheEntry this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/hibernate/cache/spi/entry/CollectionCacheEntry;
            0    3     1  collection  Lorg/hibernate/collection/spi/PersistentCollection;
            0    3     2   persister  Lorg/hibernate/persister/collection/CollectionPersister;
            0    3     3       owner  Ljava/lang/Object;
    MethodParameters:
            Name  Flags
      collection  final
      persister   final
      owner       final

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.hibernate.cache.spi.entry.CollectionCacheEntry this
         0: .line 81
            new java.lang.StringBuilder
            dup
            ldc "CollectionCacheEntry"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual org.hibernate.cache.spi.entry.CollectionCacheEntry.getState:()[Ljava/io/Serializable;
            invokestatic org.hibernate.internal.util.collections.ArrayHelper.toString:([Ljava/lang/Object;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.hibernate.cache.spi.entry.CollectionCacheEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/cache/spi/entry/CollectionCacheEntry;
}
SourceFile: "CollectionCacheEntry.java"