final class org.eclipse.collections.impl.block.factory.Predicates$AndPredicate<T> extends org.eclipse.collections.impl.block.factory.Predicates<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.collections.impl.block.factory.Predicates$AndPredicate
  super_class: org.eclipse.collections.impl.block.factory.Predicates
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private final org.eclipse.collections.api.block.predicate.Predicate<? super T> left;
    descriptor: Lorg/eclipse/collections/api/block/predicate/Predicate;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;

  private final org.eclipse.collections.api.block.predicate.Predicate<? super T> right;
    descriptor: Lorg/eclipse/collections/api/block/predicate/Predicate;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;

  private void <init>(org.eclipse.collections.api.block.predicate.Predicate<? super T>, org.eclipse.collections.api.block.predicate.Predicate<? super T>);
    descriptor: (Lorg/eclipse/collections/api/block/predicate/Predicate;Lorg/eclipse/collections/api/block/predicate/Predicate;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.collections.impl.block.factory.Predicates$AndPredicate this
        start local 1 // org.eclipse.collections.api.block.predicate.Predicate one
        start local 2 // org.eclipse.collections.api.block.predicate.Predicate two
         0: .line 979
            aload 0 /* this */
            invokespecial org.eclipse.collections.impl.block.factory.Predicates.<init>:()V
         1: .line 981
            aload 0 /* this */
            aload 1 /* one */
            putfield org.eclipse.collections.impl.block.factory.Predicates$AndPredicate.left:Lorg/eclipse/collections/api/block/predicate/Predicate;
         2: .line 982
            aload 0 /* this */
            aload 2 /* two */
            putfield org.eclipse.collections.impl.block.factory.Predicates$AndPredicate.right:Lorg/eclipse/collections/api/block/predicate/Predicate;
         3: .line 983
            return
        end local 2 // org.eclipse.collections.api.block.predicate.Predicate two
        end local 1 // org.eclipse.collections.api.block.predicate.Predicate one
        end local 0 // org.eclipse.collections.impl.block.factory.Predicates$AndPredicate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/collections/impl/block/factory/Predicates$AndPredicate<TT;>;
            0    4     1   one  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
            0    4     2   two  Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;
    Signature: (Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;Lorg/eclipse/collections/api/block/predicate/Predicate<-TT;>;)V
    MethodParameters:
      Name  Flags
      one   
      two   

  public boolean accept();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.collections.impl.block.factory.Predicates$AndPredicate this
        start local 1 // java.lang.Object anObject
         0: .line 988
            aload 0 /* this */
            getfield org.eclipse.collections.impl.block.factory.Predicates$AndPredicate.left:Lorg/eclipse/collections/api/block/predicate/Predicate;
            aload 1 /* anObject */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 1
            aload 0 /* this */
            getfield org.eclipse.collections.impl.block.factory.Predicates$AndPredicate.right:Lorg/eclipse/collections/api/block/predicate/Predicate;
            aload 1 /* anObject */
            invokeinterface org.eclipse.collections.api.block.predicate.Predicate.accept:(Ljava/lang/Object;)Z
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object anObject
        end local 0 // org.eclipse.collections.impl.block.factory.Predicates$AndPredicate this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/collections/impl/block/factory/Predicates$AndPredicate<TT;>;
            0    2     1  anObject  TT;
    Signature: (TT;)Z
    MethodParameters:
          Name  Flags
      anObject  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.collections.impl.block.factory.Predicates$AndPredicate this
         0: .line 994
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            aload 0 /* this */
            getfield org.eclipse.collections.impl.block.factory.Predicates$AndPredicate.left:Lorg/eclipse/collections/api/block/predicate/Predicate;
            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 org.eclipse.collections.impl.block.factory.Predicates$AndPredicate.right:Lorg/eclipse/collections/api/block/predicate/Predicate;
            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 // org.eclipse.collections.impl.block.factory.Predicates$AndPredicate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/collections/impl/block/factory/Predicates$AndPredicate<TT;>;
}
Signature: <T:Ljava/lang/Object;>Lorg/eclipse/collections/impl/block/factory/Predicates<TT;>;
SourceFile: "Predicates.java"
NestHost: org.eclipse.collections.impl.block.factory.Predicates
InnerClasses:
  private final AndPredicate = org.eclipse.collections.impl.block.factory.Predicates$AndPredicate of org.eclipse.collections.impl.block.factory.Predicates