public class org.hamcrest.collection.IsEmptyCollection<E> extends org.hamcrest.TypeSafeMatcher<java.util.Collection<? extends E>>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hamcrest.collection.IsEmptyCollection
  super_class: org.hamcrest.TypeSafeMatcher
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hamcrest.collection.IsEmptyCollection this
         0: .line 13
            aload 0 /* this */
            invokespecial org.hamcrest.TypeSafeMatcher.<init>:()V
            return
        end local 0 // org.hamcrest.collection.IsEmptyCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hamcrest/collection/IsEmptyCollection<TE;>;

  public boolean matchesSafely(java.util.Collection<? extends E>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.hamcrest.collection.IsEmptyCollection this
        start local 1 // java.util.Collection item
         0: .line 17
            aload 1 /* item */
            invokeinterface java.util.Collection.isEmpty:()Z
            ireturn
        end local 1 // java.util.Collection item
        end local 0 // org.hamcrest.collection.IsEmptyCollection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hamcrest/collection/IsEmptyCollection<TE;>;
            0    1     1  item  Ljava/util/Collection<+TE;>;
    Signature: (Ljava/util/Collection<+TE;>;)Z
    MethodParameters:
      Name  Flags
      item  

  public void describeMismatchSafely(java.util.Collection<? extends E>, org.hamcrest.Description);
    descriptor: (Ljava/util/Collection;Lorg/hamcrest/Description;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.hamcrest.collection.IsEmptyCollection this
        start local 1 // java.util.Collection item
        start local 2 // org.hamcrest.Description mismatchDescription
         0: .line 22
            aload 2 /* mismatchDescription */
            aload 1 /* item */
            invokeinterface org.hamcrest.Description.appendValue:(Ljava/lang/Object;)Lorg/hamcrest/Description;
            pop
         1: .line 23
            return
        end local 2 // org.hamcrest.Description mismatchDescription
        end local 1 // java.util.Collection item
        end local 0 // org.hamcrest.collection.IsEmptyCollection this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    2     0                 this  Lorg/hamcrest/collection/IsEmptyCollection<TE;>;
            0    2     1                 item  Ljava/util/Collection<+TE;>;
            0    2     2  mismatchDescription  Lorg/hamcrest/Description;
    Signature: (Ljava/util/Collection<+TE;>;Lorg/hamcrest/Description;)V
    MethodParameters:
                     Name  Flags
      item                 
      mismatchDescription  

  public void describeTo(org.hamcrest.Description);
    descriptor: (Lorg/hamcrest/Description;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hamcrest.collection.IsEmptyCollection this
        start local 1 // org.hamcrest.Description description
         0: .line 27
            aload 1 /* description */
            ldc "an empty collection"
            invokeinterface org.hamcrest.Description.appendText:(Ljava/lang/String;)Lorg/hamcrest/Description;
            pop
         1: .line 28
            return
        end local 1 // org.hamcrest.Description description
        end local 0 // org.hamcrest.collection.IsEmptyCollection this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/hamcrest/collection/IsEmptyCollection<TE;>;
            0    2     1  description  Lorg/hamcrest/Description;
    MethodParameters:
             Name  Flags
      description  

  public static <E> org.hamcrest.Matcher<java.util.Collection<? extends E>> empty();
    descriptor: ()Lorg/hamcrest/Matcher;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 40
            new org.hamcrest.collection.IsEmptyCollection
            dup
            invokespecial org.hamcrest.collection.IsEmptyCollection.<init>:()V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <E:Ljava/lang/Object;>()Lorg/hamcrest/Matcher<Ljava/util/Collection<+TE;>;>;
    RuntimeVisibleAnnotations: 
      org.hamcrest.Factory()

  public static <E> org.hamcrest.Matcher<java.util.Collection<E>> emptyCollectionOf(java.lang.Class<E>);
    descriptor: (Ljava/lang/Class;)Lorg/hamcrest/Matcher;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // java.lang.Class type
         0: .line 56
            invokestatic org.hamcrest.collection.IsEmptyCollection.empty:()Lorg/hamcrest/Matcher;
            astore 1 /* result */
        start local 1 // org.hamcrest.Matcher result
         1: .line 57
            aload 1 /* result */
            areturn
        end local 1 // org.hamcrest.Matcher result
        end local 0 // java.lang.Class type
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    type  Ljava/lang/Class<TE;>;
            1    2     1  result  Lorg/hamcrest/Matcher<Ljava/util/Collection<TE;>;>;
    Signature: <E:Ljava/lang/Object;>(Ljava/lang/Class<TE;>;)Lorg/hamcrest/Matcher<Ljava/util/Collection<TE;>;>;
    RuntimeVisibleAnnotations: 
      org.hamcrest.Factory()
    MethodParameters:
      Name  Flags
      type  

  public boolean matchesSafely(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.util.Collection
            invokevirtual org.hamcrest.collection.IsEmptyCollection.matchesSafely:(Ljava/util/Collection;)Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void describeMismatchSafely(java.lang.Object, org.hamcrest.Description);
    descriptor: (Ljava/lang/Object;Lorg/hamcrest/Description;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast java.util.Collection
            aload 2
            invokevirtual org.hamcrest.collection.IsEmptyCollection.describeMismatchSafely:(Ljava/util/Collection;Lorg/hamcrest/Description;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <E:Ljava/lang/Object;>Lorg/hamcrest/TypeSafeMatcher<Ljava/util/Collection<+TE;>;>;
SourceFile: "IsEmptyCollection.java"