abstract class com.google.common.collect.AbstractRangeSet<C extends java.lang.Comparable> implements com.google.common.collect.RangeSet<C>
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: com.google.common.collect.AbstractRangeSet
  super_class: java.lang.Object
{
  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.AbstractRangeSet this
         0: .line 27
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.google.common.collect.AbstractRangeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/AbstractRangeSet<TC;>;

  public boolean contains();
    descriptor: (Ljava/lang/Comparable;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.AbstractRangeSet this
        start local 1 // java.lang.Comparable value
         0: .line 31
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual com.google.common.collect.AbstractRangeSet.rangeContaining:(Ljava/lang/Comparable;)Lcom/google/common/collect/Range;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Comparable value
        end local 0 // com.google.common.collect.AbstractRangeSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/google/common/collect/AbstractRangeSet<TC;>;
            0    2     1  value  TC;
    Signature: (TC;)Z
    MethodParameters:
       Name  Flags
      value  

  public abstract com.google.common.collect.Range<C> rangeContaining(C);
    descriptor: (Ljava/lang/Comparable;)Lcom/google/common/collect/Range;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (TC;)Lcom/google/common/collect/Range<TC;>;
    MethodParameters:
       Name  Flags
      value  

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.AbstractRangeSet this
         0: .line 39
            aload 0 /* this */
            invokevirtual com.google.common.collect.AbstractRangeSet.asRanges:()Ljava/util/Set;
            invokeinterface java.util.Set.isEmpty:()Z
            ireturn
        end local 0 // com.google.common.collect.AbstractRangeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/AbstractRangeSet<TC;>;

  public void add(com.google.common.collect.Range<C>);
    descriptor: (Lcom/google/common/collect/Range;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.AbstractRangeSet this
        start local 1 // com.google.common.collect.Range range
         0: .line 44
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // com.google.common.collect.Range range
        end local 0 // com.google.common.collect.AbstractRangeSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/AbstractRangeSet<TC;>;
            0    1     1  range  Lcom/google/common/collect/Range<TC;>;
    Signature: (Lcom/google/common/collect/Range<TC;>;)V
    MethodParameters:
       Name  Flags
      range  

  public void remove(com.google.common.collect.Range<C>);
    descriptor: (Lcom/google/common/collect/Range;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.AbstractRangeSet this
        start local 1 // com.google.common.collect.Range range
         0: .line 49
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // com.google.common.collect.Range range
        end local 0 // com.google.common.collect.AbstractRangeSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/AbstractRangeSet<TC;>;
            0    1     1  range  Lcom/google/common/collect/Range<TC;>;
    Signature: (Lcom/google/common/collect/Range<TC;>;)V
    MethodParameters:
       Name  Flags
      range  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.google.common.collect.AbstractRangeSet this
         0: .line 54
            aload 0 /* this */
            invokestatic com.google.common.collect.Range.all:()Lcom/google/common/collect/Range;
            invokevirtual com.google.common.collect.AbstractRangeSet.remove:(Lcom/google/common/collect/Range;)V
         1: .line 55
            return
        end local 0 // com.google.common.collect.AbstractRangeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/collect/AbstractRangeSet<TC;>;

  public boolean enclosesAll(com.google.common.collect.RangeSet<C>);
    descriptor: (Lcom/google/common/collect/RangeSet;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.AbstractRangeSet this
        start local 1 // com.google.common.collect.RangeSet other
         0: .line 59
            aload 0 /* this */
            aload 1 /* other */
            invokeinterface com.google.common.collect.RangeSet.asRanges:()Ljava/util/Set;
            invokevirtual com.google.common.collect.AbstractRangeSet.enclosesAll:(Ljava/lang/Iterable;)Z
            ireturn
        end local 1 // com.google.common.collect.RangeSet other
        end local 0 // com.google.common.collect.AbstractRangeSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/AbstractRangeSet<TC;>;
            0    1     1  other  Lcom/google/common/collect/RangeSet<TC;>;
    Signature: (Lcom/google/common/collect/RangeSet<TC;>;)Z
    MethodParameters:
       Name  Flags
      other  

  public void addAll(com.google.common.collect.RangeSet<C>);
    descriptor: (Lcom/google/common/collect/RangeSet;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.AbstractRangeSet this
        start local 1 // com.google.common.collect.RangeSet other
         0: .line 64
            aload 0 /* this */
            aload 1 /* other */
            invokeinterface com.google.common.collect.RangeSet.asRanges:()Ljava/util/Set;
            invokevirtual com.google.common.collect.AbstractRangeSet.addAll:(Ljava/lang/Iterable;)V
         1: .line 65
            return
        end local 1 // com.google.common.collect.RangeSet other
        end local 0 // com.google.common.collect.AbstractRangeSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/google/common/collect/AbstractRangeSet<TC;>;
            0    2     1  other  Lcom/google/common/collect/RangeSet<TC;>;
    Signature: (Lcom/google/common/collect/RangeSet<TC;>;)V
    MethodParameters:
       Name  Flags
      other  

  public void removeAll(com.google.common.collect.RangeSet<C>);
    descriptor: (Lcom/google/common/collect/RangeSet;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.AbstractRangeSet this
        start local 1 // com.google.common.collect.RangeSet other
         0: .line 69
            aload 0 /* this */
            aload 1 /* other */
            invokeinterface com.google.common.collect.RangeSet.asRanges:()Ljava/util/Set;
            invokevirtual com.google.common.collect.AbstractRangeSet.removeAll:(Ljava/lang/Iterable;)V
         1: .line 70
            return
        end local 1 // com.google.common.collect.RangeSet other
        end local 0 // com.google.common.collect.AbstractRangeSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/google/common/collect/AbstractRangeSet<TC;>;
            0    2     1  other  Lcom/google/common/collect/RangeSet<TC;>;
    Signature: (Lcom/google/common/collect/RangeSet<TC;>;)V
    MethodParameters:
       Name  Flags
      other  

  public boolean intersects(com.google.common.collect.Range<C>);
    descriptor: (Lcom/google/common/collect/Range;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.AbstractRangeSet this
        start local 1 // com.google.common.collect.Range otherRange
         0: .line 74
            aload 0 /* this */
            aload 1 /* otherRange */
            invokevirtual com.google.common.collect.AbstractRangeSet.subRangeSet:(Lcom/google/common/collect/Range;)Lcom/google/common/collect/RangeSet;
            invokeinterface com.google.common.collect.RangeSet.isEmpty:()Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // com.google.common.collect.Range otherRange
        end local 0 // com.google.common.collect.AbstractRangeSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lcom/google/common/collect/AbstractRangeSet<TC;>;
            0    3     1  otherRange  Lcom/google/common/collect/Range<TC;>;
    Signature: (Lcom/google/common/collect/Range<TC;>;)Z
    MethodParameters:
            Name  Flags
      otherRange  

  public abstract boolean encloses(com.google.common.collect.Range<C>);
    descriptor: (Lcom/google/common/collect/Range;)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lcom/google/common/collect/Range<TC;>;)Z
    MethodParameters:
            Name  Flags
      otherRange  

  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 // com.google.common.collect.AbstractRangeSet this
        start local 1 // java.lang.Object obj
         0: .line 82
            aload 1 /* obj */
            aload 0 /* this */
            if_acmpne 2
         1: .line 83
            iconst_1
            ireturn
         2: .line 84
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof com.google.common.collect.RangeSet
            ifeq 5
         3: .line 85
            aload 1 /* obj */
            checkcast com.google.common.collect.RangeSet
            astore 2 /* other */
        start local 2 // com.google.common.collect.RangeSet other
         4: .line 86
            aload 0 /* this */
            invokevirtual com.google.common.collect.AbstractRangeSet.asRanges:()Ljava/util/Set;
            aload 2 /* other */
            invokeinterface com.google.common.collect.RangeSet.asRanges:()Ljava/util/Set;
            invokeinterface java.util.Set.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // com.google.common.collect.RangeSet other
         5: .line 88
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // com.google.common.collect.AbstractRangeSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lcom/google/common/collect/AbstractRangeSet<TC;>;
            0    6     1    obj  Ljava/lang/Object;
            4    5     2  other  Lcom/google/common/collect/RangeSet<*>;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
      Name  Flags
      obj   

  public final int hashCode();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.AbstractRangeSet this
         0: .line 93
            aload 0 /* this */
            invokevirtual com.google.common.collect.AbstractRangeSet.asRanges:()Ljava/util/Set;
            invokeinterface java.util.Set.hashCode:()I
            ireturn
        end local 0 // com.google.common.collect.AbstractRangeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/AbstractRangeSet<TC;>;

  public final java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.AbstractRangeSet this
         0: .line 98
            aload 0 /* this */
            invokevirtual com.google.common.collect.AbstractRangeSet.asRanges:()Ljava/util/Set;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.google.common.collect.AbstractRangeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/AbstractRangeSet<TC;>;
}
Signature: <C::Ljava/lang/Comparable;>Ljava/lang/Object;Lcom/google/common/collect/RangeSet<TC;>;
SourceFile: "AbstractRangeSet.java"
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()