class org.eclipse.jgit.transport.FilterSpec$ObjectTypes
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.eclipse.jgit.transport.FilterSpec$ObjectTypes
  super_class: java.lang.Object
{
  static org.eclipse.jgit.transport.FilterSpec$ObjectTypes ALL;
    descriptor: Lorg/eclipse/jgit/transport/FilterSpec$ObjectTypes;
    flags: (0x0008) ACC_STATIC

  private final java.math.BigInteger val;
    descriptor: Ljava/math/BigInteger;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 38
            iconst_4
            newarray 10
            dup
            iconst_0
            iconst_3
            iastore
            dup
            iconst_1
            iconst_2
            iastore
            dup
            iconst_2
            iconst_1
            iastore
            dup
            iconst_3
            iconst_4
            iastore
            invokestatic org.eclipse.jgit.transport.FilterSpec$ObjectTypes.allow:([I)Lorg/eclipse/jgit/transport/FilterSpec$ObjectTypes;
            putstatic org.eclipse.jgit.transport.FilterSpec$ObjectTypes.ALL:Lorg/eclipse/jgit/transport/FilterSpec$ObjectTypes;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>(java.math.BigInteger);
    descriptor: (Ljava/math/BigInteger;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.transport.FilterSpec$ObjectTypes this
        start local 1 // java.math.BigInteger val
         0: .line 42
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 43
            aload 0 /* this */
            aload 1 /* val */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.math.BigInteger
            putfield org.eclipse.jgit.transport.FilterSpec$ObjectTypes.val:Ljava/math/BigInteger;
         2: .line 44
            return
        end local 1 // java.math.BigInteger val
        end local 0 // org.eclipse.jgit.transport.FilterSpec$ObjectTypes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jgit/transport/FilterSpec$ObjectTypes;
            0    3     1   val  Ljava/math/BigInteger;
    MethodParameters:
      Name  Flags
      val   

  static org.eclipse.jgit.transport.FilterSpec$ObjectTypes allow(int[]);
    descriptor: ([I)Lorg/eclipse/jgit/transport/FilterSpec$ObjectTypes;
    flags: (0x0088) ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // int[] types
         0: .line 47
            getstatic java.math.BigInteger.ZERO:Ljava/math/BigInteger;
            astore 1 /* bits */
        start local 1 // java.math.BigInteger bits
         1: .line 48
            aload 0 /* types */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 5
      StackMap locals: int[] java.math.BigInteger top int int int[]
      StackMap stack:
         2: aload 5
            iload 3
            iaload
            istore 2 /* type */
        start local 2 // int type
         3: .line 49
            aload 1 /* bits */
            iload 2 /* type */
            invokevirtual java.math.BigInteger.setBit:(I)Ljava/math/BigInteger;
            astore 1 /* bits */
        end local 2 // int type
         4: .line 48
            iinc 3 1
      StackMap locals:
      StackMap stack:
         5: iload 3
            iload 4
            if_icmplt 2
         6: .line 51
            new org.eclipse.jgit.transport.FilterSpec$ObjectTypes
            dup
            aload 1 /* bits */
            invokespecial org.eclipse.jgit.transport.FilterSpec$ObjectTypes.<init>:(Ljava/math/BigInteger;)V
            areturn
        end local 1 // java.math.BigInteger bits
        end local 0 // int[] types
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0  types  [I
            1    7     1   bits  Ljava/math/BigInteger;
            3    4     2   type  I
    MethodParameters:
       Name  Flags
      types  

  boolean contains(int);
    descriptor: (I)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.transport.FilterSpec$ObjectTypes this
        start local 1 // int type
         0: .line 55
            aload 0 /* this */
            getfield org.eclipse.jgit.transport.FilterSpec$ObjectTypes.val:Ljava/math/BigInteger;
            iload 1 /* type */
            invokevirtual java.math.BigInteger.testBit:(I)Z
            ireturn
        end local 1 // int type
        end local 0 // org.eclipse.jgit.transport.FilterSpec$ObjectTypes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/transport/FilterSpec$ObjectTypes;
            0    1     1  type  I
    MethodParameters:
      Name  Flags
      type  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.jgit.transport.FilterSpec$ObjectTypes this
        start local 1 // java.lang.Object obj
         0: .line 61
            aload 1 /* obj */
            instanceof org.eclipse.jgit.transport.FilterSpec$ObjectTypes
            ifne 2
         1: .line 62
            iconst_0
            ireturn
         2: .line 65
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast org.eclipse.jgit.transport.FilterSpec$ObjectTypes
            astore 2 /* other */
        start local 2 // org.eclipse.jgit.transport.FilterSpec$ObjectTypes other
         3: .line 66
            aload 2 /* other */
            getfield org.eclipse.jgit.transport.FilterSpec$ObjectTypes.val:Ljava/math/BigInteger;
            aload 0 /* this */
            getfield org.eclipse.jgit.transport.FilterSpec$ObjectTypes.val:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // org.eclipse.jgit.transport.FilterSpec$ObjectTypes other
        end local 1 // java.lang.Object obj
        end local 0 // org.eclipse.jgit.transport.FilterSpec$ObjectTypes this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/eclipse/jgit/transport/FilterSpec$ObjectTypes;
            0    4     1    obj  Ljava/lang/Object;
            3    4     2  other  Lorg/eclipse/jgit/transport/FilterSpec$ObjectTypes;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.transport.FilterSpec$ObjectTypes this
         0: .line 72
            aload 0 /* this */
            getfield org.eclipse.jgit.transport.FilterSpec$ObjectTypes.val:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.hashCode:()I
            ireturn
        end local 0 // org.eclipse.jgit.transport.FilterSpec$ObjectTypes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/transport/FilterSpec$ObjectTypes;
}
SourceFile: "FilterSpec.java"
NestHost: org.eclipse.jgit.transport.FilterSpec
InnerClasses:
  ObjectTypes = org.eclipse.jgit.transport.FilterSpec$ObjectTypes of org.eclipse.jgit.transport.FilterSpec