public class net.bytebuddy.matcher.ElementMatcher$Junction$Conjunction<W> extends net.bytebuddy.matcher.ElementMatcher$Junction$AbstractBase<W>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: net.bytebuddy.matcher.ElementMatcher$Junction$Conjunction
  super_class: net.bytebuddy.matcher.ElementMatcher$Junction$AbstractBase
{
  private final net.bytebuddy.matcher.ElementMatcher<? super W> left;
    descriptor: Lnet/bytebuddy/matcher/ElementMatcher;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lnet/bytebuddy/matcher/ElementMatcher<-TW;>;

  private final net.bytebuddy.matcher.ElementMatcher<? super W> right;
    descriptor: Lnet/bytebuddy/matcher/ElementMatcher;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lnet/bytebuddy/matcher/ElementMatcher<-TW;>;

  public void <init>(net.bytebuddy.matcher.ElementMatcher<? super W>, net.bytebuddy.matcher.ElementMatcher<? super W>);
    descriptor: (Lnet/bytebuddy/matcher/ElementMatcher;Lnet/bytebuddy/matcher/ElementMatcher;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // net.bytebuddy.matcher.ElementMatcher$Junction$Conjunction this
        start local 1 // net.bytebuddy.matcher.ElementMatcher left
        start local 2 // net.bytebuddy.matcher.ElementMatcher right
         0: .line 113
            aload 0 /* this */
            invokespecial net.bytebuddy.matcher.ElementMatcher$Junction$AbstractBase.<init>:()V
         1: .line 114
            aload 0 /* this */
            aload 1 /* left */
            putfield net.bytebuddy.matcher.ElementMatcher$Junction$Conjunction.left:Lnet/bytebuddy/matcher/ElementMatcher;
         2: .line 115
            aload 0 /* this */
            aload 2 /* right */
            putfield net.bytebuddy.matcher.ElementMatcher$Junction$Conjunction.right:Lnet/bytebuddy/matcher/ElementMatcher;
         3: .line 116
            return
        end local 2 // net.bytebuddy.matcher.ElementMatcher right
        end local 1 // net.bytebuddy.matcher.ElementMatcher left
        end local 0 // net.bytebuddy.matcher.ElementMatcher$Junction$Conjunction this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lnet/bytebuddy/matcher/ElementMatcher$Junction$Conjunction<TW;>;
            0    4     1   left  Lnet/bytebuddy/matcher/ElementMatcher<-TW;>;
            0    4     2  right  Lnet/bytebuddy/matcher/ElementMatcher<-TW;>;
    Signature: (Lnet/bytebuddy/matcher/ElementMatcher<-TW;>;Lnet/bytebuddy/matcher/ElementMatcher<-TW;>;)V
    MethodParameters:
       Name  Flags
      left   
      right  

  public boolean matches();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // net.bytebuddy.matcher.ElementMatcher$Junction$Conjunction this
        start local 1 // java.lang.Object target
         0: .line 122
            aload 0 /* this */
            getfield net.bytebuddy.matcher.ElementMatcher$Junction$Conjunction.left:Lnet/bytebuddy/matcher/ElementMatcher;
            aload 1 /* target */
            invokeinterface net.bytebuddy.matcher.ElementMatcher.matches:(Ljava/lang/Object;)Z
            ifeq 1
            aload 0 /* this */
            getfield net.bytebuddy.matcher.ElementMatcher$Junction$Conjunction.right:Lnet/bytebuddy/matcher/ElementMatcher;
            aload 1 /* target */
            invokeinterface net.bytebuddy.matcher.ElementMatcher.matches:(Ljava/lang/Object;)Z
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object target
        end local 0 // net.bytebuddy.matcher.ElementMatcher$Junction$Conjunction this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lnet/bytebuddy/matcher/ElementMatcher$Junction$Conjunction<TW;>;
            0    2     1  target  TW;
    Signature: (TW;)Z
    MethodParameters:
        Name  Flags
      target  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // net.bytebuddy.matcher.ElementMatcher$Junction$Conjunction this
         0: .line 127
            new java.lang.StringBuilder
            dup
            ldc "("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield net.bytebuddy.matcher.ElementMatcher$Junction$Conjunction.left:Lnet/bytebuddy/matcher/ElementMatcher;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " and "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield net.bytebuddy.matcher.ElementMatcher$Junction$Conjunction.right:Lnet/bytebuddy/matcher/ElementMatcher;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            bipush 41
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // net.bytebuddy.matcher.ElementMatcher$Junction$Conjunction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lnet/bytebuddy/matcher/ElementMatcher$Junction$Conjunction<TW;>;
}
Signature: <W:Ljava/lang/Object;>Lnet/bytebuddy/matcher/ElementMatcher$Junction$AbstractBase<TW;>;
SourceFile: "ElementMatcher.java"
NestHost: net.bytebuddy.matcher.ElementMatcher
InnerClasses:
  public abstract Enhance = net.bytebuddy.build.HashCodeAndEqualsPlugin$Enhance of net.bytebuddy.build.HashCodeAndEqualsPlugin
  public abstract Junction = net.bytebuddy.matcher.ElementMatcher$Junction of net.bytebuddy.matcher.ElementMatcher
  public abstract AbstractBase = net.bytebuddy.matcher.ElementMatcher$Junction$AbstractBase of net.bytebuddy.matcher.ElementMatcher$Junction
  public Conjunction = net.bytebuddy.matcher.ElementMatcher$Junction$Conjunction of net.bytebuddy.matcher.ElementMatcher$Junction
    RuntimeVisibleAnnotations: 
      net.bytebuddy.build.HashCodeAndEqualsPlugin$Enhance()