public abstract class org.hamcrest.Condition<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.hamcrest.Condition
  super_class: java.lang.Object
{
  public static final org.hamcrest.Condition$NotMatched<java.lang.Object> NOT_MATCHED;
    descriptor: Lorg/hamcrest/Condition$NotMatched;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Signature: Lorg/hamcrest/Condition$NotMatched<Ljava/lang/Object;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 14
            new org.hamcrest.Condition$NotMatched
            dup
            invokespecial org.hamcrest.Condition$NotMatched.<init>:()V
            putstatic org.hamcrest.Condition.NOT_MATCHED:Lorg/hamcrest/Condition$NotMatched;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hamcrest.Condition this
         0: .line 20
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.hamcrest.Condition this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hamcrest/Condition<TT;>;

  public abstract boolean matching(org.hamcrest.Matcher<T>, java.lang.String);
    descriptor: (Lorg/hamcrest/Matcher;Ljava/lang/String;)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lorg/hamcrest/Matcher<TT;>;Ljava/lang/String;)Z
    MethodParameters:
         Name  Flags
      match    
      message  

  public abstract <U> org.hamcrest.Condition<U> and(org.hamcrest.Condition$Step<? super T, U>);
    descriptor: (Lorg/hamcrest/Condition$Step;)Lorg/hamcrest/Condition;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <U:Ljava/lang/Object;>(Lorg/hamcrest/Condition$Step<-TT;TU;>;)Lorg/hamcrest/Condition<TU;>;
    MethodParameters:
         Name  Flags
      mapping  

  public final boolean matching(org.hamcrest.Matcher<T>);
    descriptor: (Lorg/hamcrest/Matcher;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.hamcrest.Condition this
        start local 1 // org.hamcrest.Matcher match
         0: .line 25
            aload 0 /* this */
            aload 1 /* match */
            ldc ""
            invokevirtual org.hamcrest.Condition.matching:(Lorg/hamcrest/Matcher;Ljava/lang/String;)Z
            ireturn
        end local 1 // org.hamcrest.Matcher match
        end local 0 // org.hamcrest.Condition this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/hamcrest/Condition<TT;>;
            0    1     1  match  Lorg/hamcrest/Matcher<TT;>;
    Signature: (Lorg/hamcrest/Matcher<TT;>;)Z
    MethodParameters:
       Name  Flags
      match  

  public final <U> org.hamcrest.Condition<U> then(org.hamcrest.Condition$Step<? super T, U>);
    descriptor: (Lorg/hamcrest/Condition$Step;)Lorg/hamcrest/Condition;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hamcrest.Condition this
        start local 1 // org.hamcrest.Condition$Step mapping
         0: .line 26
            aload 0 /* this */
            aload 1 /* mapping */
            invokevirtual org.hamcrest.Condition.and:(Lorg/hamcrest/Condition$Step;)Lorg/hamcrest/Condition;
            areturn
        end local 1 // org.hamcrest.Condition$Step mapping
        end local 0 // org.hamcrest.Condition this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/hamcrest/Condition<TT;>;
            0    1     1  mapping  Lorg/hamcrest/Condition$Step<-TT;TU;>;
    Signature: <U:Ljava/lang/Object;>(Lorg/hamcrest/Condition$Step<-TT;TU;>;)Lorg/hamcrest/Condition<TU;>;
    MethodParameters:
         Name  Flags
      mapping  

  public static <T> org.hamcrest.Condition<T> notMatched();
    descriptor: ()Lorg/hamcrest/Condition;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 30
            getstatic org.hamcrest.Condition.NOT_MATCHED:Lorg/hamcrest/Condition$NotMatched;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <T:Ljava/lang/Object;>()Lorg/hamcrest/Condition<TT;>;

  public static <T> org.hamcrest.Condition<T> matched(T, org.hamcrest.Description);
    descriptor: (Ljava/lang/Object;Lorg/hamcrest/Description;)Lorg/hamcrest/Condition;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.lang.Object theValue
        start local 1 // org.hamcrest.Description mismatch
         0: .line 34
            new org.hamcrest.Condition$Matched
            dup
            aload 0 /* theValue */
            aload 1 /* mismatch */
            invokespecial org.hamcrest.Condition$Matched.<init>:(Ljava/lang/Object;Lorg/hamcrest/Description;)V
            areturn
        end local 1 // org.hamcrest.Description mismatch
        end local 0 // java.lang.Object theValue
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  theValue  TT;
            0    1     1  mismatch  Lorg/hamcrest/Description;
    Signature: <T:Ljava/lang/Object;>(TT;Lorg/hamcrest/Description;)Lorg/hamcrest/Condition<TT;>;
    MethodParameters:
          Name  Flags
      theValue  final
      mismatch  final
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "Condition.java"
NestMembers:
  org.hamcrest.Condition$Matched  org.hamcrest.Condition$NotMatched  org.hamcrest.Condition$Step
InnerClasses:
  private final Matched = org.hamcrest.Condition$Matched of org.hamcrest.Condition
  private final NotMatched = org.hamcrest.Condition$NotMatched of org.hamcrest.Condition
  public abstract Step = org.hamcrest.Condition$Step of org.hamcrest.Condition