abstract class com.google.common.collect.ImmutableAsList<E> extends com.google.common.collect.ImmutableList<E>
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: com.google.common.collect.ImmutableAsList
  super_class: com.google.common.collect.ImmutableList
{
  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.ImmutableAsList this
         0: .line 34
            aload 0 /* this */
            invokespecial com.google.common.collect.ImmutableList.<init>:()V
            return
        end local 0 // com.google.common.collect.ImmutableAsList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/ImmutableAsList<TE;>;

  abstract com.google.common.collect.ImmutableCollection<E> delegateCollection();
    descriptor: ()Lcom/google/common/collect/ImmutableCollection;
    flags: (0x0400) ACC_ABSTRACT
    Signature: ()Lcom/google/common/collect/ImmutableCollection<TE;>;

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.ImmutableAsList this
        start local 1 // java.lang.Object target
         0: .line 41
            aload 0 /* this */
            invokevirtual com.google.common.collect.ImmutableAsList.delegateCollection:()Lcom/google/common/collect/ImmutableCollection;
            aload 1 /* target */
            invokevirtual com.google.common.collect.ImmutableCollection.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object target
        end local 0 // com.google.common.collect.ImmutableAsList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/google/common/collect/ImmutableAsList<TE;>;
            0    1     1  target  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      target  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.ImmutableAsList this
         0: .line 46
            aload 0 /* this */
            invokevirtual com.google.common.collect.ImmutableAsList.delegateCollection:()Lcom/google/common/collect/ImmutableCollection;
            invokevirtual com.google.common.collect.ImmutableCollection.size:()I
            ireturn
        end local 0 // com.google.common.collect.ImmutableAsList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/ImmutableAsList<TE;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.ImmutableAsList this
         0: .line 51
            aload 0 /* this */
            invokevirtual com.google.common.collect.ImmutableAsList.delegateCollection:()Lcom/google/common/collect/ImmutableCollection;
            invokevirtual com.google.common.collect.ImmutableCollection.isEmpty:()Z
            ireturn
        end local 0 // com.google.common.collect.ImmutableAsList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/ImmutableAsList<TE;>;

  boolean isPartialView();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.ImmutableAsList this
         0: .line 56
            aload 0 /* this */
            invokevirtual com.google.common.collect.ImmutableAsList.delegateCollection:()Lcom/google/common/collect/ImmutableCollection;
            invokevirtual com.google.common.collect.ImmutableCollection.isPartialView:()Z
            ireturn
        end local 0 // com.google.common.collect.ImmutableAsList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/ImmutableAsList<TE;>;

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.collect.ImmutableAsList this
        start local 1 // java.io.ObjectInputStream stream
         0: .line 77
            new java.io.InvalidObjectException
            dup
            ldc "Use SerializedForm"
            invokespecial java.io.InvalidObjectException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.io.ObjectInputStream stream
        end local 0 // com.google.common.collect.ImmutableAsList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/google/common/collect/ImmutableAsList<TE;>;
            0    1     1  stream  Ljava/io/ObjectInputStream;
    Exceptions:
      throws java.io.InvalidObjectException
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()
    MethodParameters:
        Name  Flags
      stream  

  java.lang.Object writeReplace();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.ImmutableAsList this
         0: .line 83
            new com.google.common.collect.ImmutableAsList$SerializedForm
            dup
            aload 0 /* this */
            invokevirtual com.google.common.collect.ImmutableAsList.delegateCollection:()Lcom/google/common/collect/ImmutableCollection;
            invokespecial com.google.common.collect.ImmutableAsList$SerializedForm.<init>:(Lcom/google/common/collect/ImmutableCollection;)V
            areturn
        end local 0 // com.google.common.collect.ImmutableAsList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/ImmutableAsList<TE;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()
}
Signature: <E:Ljava/lang/Object;>Lcom/google/common/collect/ImmutableList<TE;>;
SourceFile: "ImmutableAsList.java"
NestMembers:
  com.google.common.collect.ImmutableAsList$SerializedForm
InnerClasses:
  SerializedForm = com.google.common.collect.ImmutableAsList$SerializedForm of com.google.common.collect.ImmutableAsList
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtCompatible(serializable = true, emulated = true)