public final class org.apache.commons.collections.functors.AnyPredicate implements org.apache.commons.collections.Predicate, org.apache.commons.collections.functors.PredicateDecorator, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.commons.collections.functors.AnyPredicate
  super_class: java.lang.Object
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 7429999530934647542

  private final org.apache.commons.collections.Predicate[] iPredicates;
    descriptor: [Lorg/apache/commons/collections/Predicate;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public static org.apache.commons.collections.Predicate getInstance(org.apache.commons.collections.Predicate[]);
    descriptor: ([Lorg/apache/commons/collections/Predicate;)Lorg/apache/commons/collections/Predicate;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.Predicate[] predicates
         0: .line 58
            aload 0 /* predicates */
            invokestatic org.apache.commons.collections.functors.FunctorUtils.validate:([Lorg/apache/commons/collections/Predicate;)V
         1: .line 59
            aload 0 /* predicates */
            arraylength
            ifne 3
         2: .line 60
            getstatic org.apache.commons.collections.functors.FalsePredicate.INSTANCE:Lorg/apache/commons/collections/Predicate;
            areturn
         3: .line 62
      StackMap locals:
      StackMap stack:
            aload 0 /* predicates */
            arraylength
            iconst_1
            if_icmpne 5
         4: .line 63
            aload 0 /* predicates */
            iconst_0
            aaload
            areturn
         5: .line 65
      StackMap locals:
      StackMap stack:
            new org.apache.commons.collections.functors.AnyPredicate
            dup
            aload 0 /* predicates */
            invokestatic org.apache.commons.collections.functors.FunctorUtils.copy:([Lorg/apache/commons/collections/Predicate;)[Lorg/apache/commons/collections/Predicate;
            invokespecial org.apache.commons.collections.functors.AnyPredicate.<init>:([Lorg/apache/commons/collections/Predicate;)V
            areturn
        end local 0 // org.apache.commons.collections.Predicate[] predicates
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0  predicates  [Lorg/apache/commons/collections/Predicate;
    MethodParameters:
            Name  Flags
      predicates  

  public static org.apache.commons.collections.Predicate getInstance(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Lorg/apache/commons/collections/Predicate;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.util.Collection predicates
         0: .line 80
            aload 0 /* predicates */
            invokestatic org.apache.commons.collections.functors.FunctorUtils.validate:(Ljava/util/Collection;)[Lorg/apache/commons/collections/Predicate;
            astore 1 /* preds */
        start local 1 // org.apache.commons.collections.Predicate[] preds
         1: .line 81
            aload 1 /* preds */
            arraylength
            ifne 3
         2: .line 82
            getstatic org.apache.commons.collections.functors.FalsePredicate.INSTANCE:Lorg/apache/commons/collections/Predicate;
            areturn
         3: .line 84
      StackMap locals: org.apache.commons.collections.Predicate[]
      StackMap stack:
            aload 1 /* preds */
            arraylength
            iconst_1
            if_icmpne 5
         4: .line 85
            aload 1 /* preds */
            iconst_0
            aaload
            areturn
         5: .line 87
      StackMap locals:
      StackMap stack:
            new org.apache.commons.collections.functors.AnyPredicate
            dup
            aload 1 /* preds */
            invokespecial org.apache.commons.collections.functors.AnyPredicate.<init>:([Lorg/apache/commons/collections/Predicate;)V
            areturn
        end local 1 // org.apache.commons.collections.Predicate[] preds
        end local 0 // java.util.Collection predicates
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0  predicates  Ljava/util/Collection;
            1    6     1       preds  [Lorg/apache/commons/collections/Predicate;
    MethodParameters:
            Name  Flags
      predicates  

  public void <init>(org.apache.commons.collections.Predicate[]);
    descriptor: ([Lorg/apache/commons/collections/Predicate;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.functors.AnyPredicate this
        start local 1 // org.apache.commons.collections.Predicate[] predicates
         0: .line 97
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 98
            aload 0 /* this */
            aload 1 /* predicates */
            putfield org.apache.commons.collections.functors.AnyPredicate.iPredicates:[Lorg/apache/commons/collections/Predicate;
         2: .line 99
            return
        end local 1 // org.apache.commons.collections.Predicate[] predicates
        end local 0 // org.apache.commons.collections.functors.AnyPredicate this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/apache/commons/collections/functors/AnyPredicate;
            0    3     1  predicates  [Lorg/apache/commons/collections/Predicate;
    MethodParameters:
            Name  Flags
      predicates  

  public boolean evaluate(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.functors.AnyPredicate this
        start local 1 // java.lang.Object object
         0: .line 108
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 5
         2: .line 109
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.functors.AnyPredicate.iPredicates:[Lorg/apache/commons/collections/Predicate;
            iload 2 /* i */
            aaload
            aload 1 /* object */
            invokeinterface org.apache.commons.collections.Predicate.evaluate:(Ljava/lang/Object;)Z
            ifeq 4
         3: .line 110
            iconst_1
            ireturn
         4: .line 108
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.commons.collections.functors.AnyPredicate.iPredicates:[Lorg/apache/commons/collections/Predicate;
            arraylength
            if_icmplt 2
        end local 2 // int i
         6: .line 113
            iconst_0
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.apache.commons.collections.functors.AnyPredicate this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/apache/commons/collections/functors/AnyPredicate;
            0    7     1  object  Ljava/lang/Object;
            1    6     2       i  I
    MethodParameters:
        Name  Flags
      object  

  public org.apache.commons.collections.Predicate[] getPredicates();
    descriptor: ()[Lorg/apache/commons/collections/Predicate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.functors.AnyPredicate this
         0: .line 123
            aload 0 /* this */
            getfield org.apache.commons.collections.functors.AnyPredicate.iPredicates:[Lorg/apache/commons/collections/Predicate;
            areturn
        end local 0 // org.apache.commons.collections.functors.AnyPredicate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/functors/AnyPredicate;
}
SourceFile: "AnyPredicate.java"