public final class org.apache.commons.collections4.functors.OrPredicate<T> implements org.apache.commons.collections4.functors.PredicateDecorator<T>, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.commons.collections4.functors.OrPredicate
  super_class: java.lang.Object
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -8791518325735182855

  private final org.apache.commons.collections4.Predicate<? super T> iPredicate1;
    descriptor: Lorg/apache/commons/collections4/Predicate;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/apache/commons/collections4/Predicate<-TT;>;

  private final org.apache.commons.collections4.Predicate<? super T> iPredicate2;
    descriptor: Lorg/apache/commons/collections4/Predicate;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/apache/commons/collections4/Predicate<-TT;>;

  public static <T> org.apache.commons.collections4.Predicate<T> orPredicate(org.apache.commons.collections4.Predicate<? super T>, org.apache.commons.collections4.Predicate<? super T>);
    descriptor: (Lorg/apache/commons/collections4/Predicate;Lorg/apache/commons/collections4/Predicate;)Lorg/apache/commons/collections4/Predicate;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.collections4.Predicate predicate1
        start local 1 // org.apache.commons.collections4.Predicate predicate2
         0: .line 49
            aload 0 /* predicate1 */
            ifnull 1
            aload 1 /* predicate2 */
            ifnonnull 2
         1: .line 50
      StackMap locals:
      StackMap stack:
            new java.lang.NullPointerException
            dup
            ldc "Predicate must not be null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 52
      StackMap locals:
      StackMap stack:
            new org.apache.commons.collections4.functors.OrPredicate
            dup
            aload 0 /* predicate1 */
            aload 1 /* predicate2 */
            invokespecial org.apache.commons.collections4.functors.OrPredicate.<init>:(Lorg/apache/commons/collections4/Predicate;Lorg/apache/commons/collections4/Predicate;)V
            areturn
        end local 1 // org.apache.commons.collections4.Predicate predicate2
        end local 0 // org.apache.commons.collections4.Predicate predicate1
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0  predicate1  Lorg/apache/commons/collections4/Predicate<-TT;>;
            0    3     1  predicate2  Lorg/apache/commons/collections4/Predicate<-TT;>;
    Signature: <T:Ljava/lang/Object;>(Lorg/apache/commons/collections4/Predicate<-TT;>;Lorg/apache/commons/collections4/Predicate<-TT;>;)Lorg/apache/commons/collections4/Predicate<TT;>;
    MethodParameters:
            Name  Flags
      predicate1  final
      predicate2  final

  public void <init>(org.apache.commons.collections4.Predicate<? super T>, org.apache.commons.collections4.Predicate<? super T>);
    descriptor: (Lorg/apache/commons/collections4/Predicate;Lorg/apache/commons/collections4/Predicate;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.commons.collections4.functors.OrPredicate this
        start local 1 // org.apache.commons.collections4.Predicate predicate1
        start local 2 // org.apache.commons.collections4.Predicate predicate2
         0: .line 63
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 64
            aload 0 /* this */
            aload 1 /* predicate1 */
            putfield org.apache.commons.collections4.functors.OrPredicate.iPredicate1:Lorg/apache/commons/collections4/Predicate;
         2: .line 65
            aload 0 /* this */
            aload 2 /* predicate2 */
            putfield org.apache.commons.collections4.functors.OrPredicate.iPredicate2:Lorg/apache/commons/collections4/Predicate;
         3: .line 66
            return
        end local 2 // org.apache.commons.collections4.Predicate predicate2
        end local 1 // org.apache.commons.collections4.Predicate predicate1
        end local 0 // org.apache.commons.collections4.functors.OrPredicate this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lorg/apache/commons/collections4/functors/OrPredicate<TT;>;
            0    4     1  predicate1  Lorg/apache/commons/collections4/Predicate<-TT;>;
            0    4     2  predicate2  Lorg/apache/commons/collections4/Predicate<-TT;>;
    Signature: (Lorg/apache/commons/collections4/Predicate<-TT;>;Lorg/apache/commons/collections4/Predicate<-TT;>;)V
    MethodParameters:
            Name  Flags
      predicate1  final
      predicate2  final

  public boolean evaluate();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections4.functors.OrPredicate this
        start local 1 // java.lang.Object object
         0: .line 76
            aload 0 /* this */
            getfield org.apache.commons.collections4.functors.OrPredicate.iPredicate1:Lorg/apache/commons/collections4/Predicate;
            aload 1 /* object */
            invokeinterface org.apache.commons.collections4.Predicate.evaluate:(Ljava/lang/Object;)Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.commons.collections4.functors.OrPredicate.iPredicate2:Lorg/apache/commons/collections4/Predicate;
            aload 1 /* object */
            invokeinterface org.apache.commons.collections4.Predicate.evaluate:(Ljava/lang/Object;)Z
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.apache.commons.collections4.functors.OrPredicate this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/commons/collections4/functors/OrPredicate<TT;>;
            0    2     1  object  TT;
    Signature: (TT;)Z
    MethodParameters:
        Name  Flags
      object  final

  public org.apache.commons.collections4.Predicate<? super T>[] getPredicates();
    descriptor: ()[Lorg/apache/commons/collections4/Predicate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.functors.OrPredicate this
         0: .line 88
            iconst_2
            anewarray org.apache.commons.collections4.Predicate
            dup
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.collections4.functors.OrPredicate.iPredicate1:Lorg/apache/commons/collections4/Predicate;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.apache.commons.collections4.functors.OrPredicate.iPredicate2:Lorg/apache/commons/collections4/Predicate;
            aastore
            areturn
        end local 0 // org.apache.commons.collections4.functors.OrPredicate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/functors/OrPredicate<TT;>;
    Signature: ()[Lorg/apache/commons/collections4/Predicate<-TT;>;
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lorg/apache/commons/collections4/functors/PredicateDecorator<TT;>;Ljava/io/Serializable;
SourceFile: "OrPredicate.java"