public abstract class sun.text.normalizer.UCharacterIterator implements java.lang.Cloneable
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: sun.text.normalizer.UCharacterIterator
  super_class: java.lang.Object
{
  public static final int DONE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: -1

  protected void <init>();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.text.normalizer.UCharacterIterator this
         0: .line 58
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 59
            return
        end local 0 // sun.text.normalizer.UCharacterIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/text/normalizer/UCharacterIterator;

  public static final sun.text.normalizer.UCharacterIterator getInstance(java.lang.String);
    descriptor: (Ljava/lang/String;)Lsun/text/normalizer/UCharacterIterator;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.String source
         0: .line 79
            new sun.text.normalizer.ReplaceableUCharacterIterator
            dup
            aload 0 /* source */
            invokespecial sun.text.normalizer.ReplaceableUCharacterIterator.<init>:(Ljava/lang/String;)V
            areturn
        end local 0 // java.lang.String source
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  source  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      source  

  public static final sun.text.normalizer.UCharacterIterator getInstance(java.lang.StringBuffer);
    descriptor: (Ljava/lang/StringBuffer;)Lsun/text/normalizer/UCharacterIterator;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.StringBuffer source
         0: .line 91
            new sun.text.normalizer.ReplaceableUCharacterIterator
            dup
            aload 0 /* source */
            invokespecial sun.text.normalizer.ReplaceableUCharacterIterator.<init>:(Ljava/lang/StringBuffer;)V
            areturn
        end local 0 // java.lang.StringBuffer source
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  source  Ljava/lang/StringBuffer;
    MethodParameters:
        Name  Flags
      source  

  public static final sun.text.normalizer.UCharacterIterator getInstance(java.text.CharacterIterator);
    descriptor: (Ljava/text/CharacterIterator;)Lsun/text/normalizer/UCharacterIterator;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.text.CharacterIterator source
         0: .line 103
            new sun.text.normalizer.CharacterIteratorWrapper
            dup
            aload 0 /* source */
            invokespecial sun.text.normalizer.CharacterIteratorWrapper.<init>:(Ljava/text/CharacterIterator;)V
            areturn
        end local 0 // java.text.CharacterIterator source
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  source  Ljava/text/CharacterIterator;
    MethodParameters:
        Name  Flags
      source  

  public abstract int getLength();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract int getIndex();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract int next();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public int nextCodePoint();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // sun.text.normalizer.UCharacterIterator this
         0: .line 145
            aload 0 /* this */
            invokevirtual sun.text.normalizer.UCharacterIterator.next:()I
            istore 1 /* ch1 */
        start local 1 // int ch1
         1: .line 146
            iload 1 /* ch1 */
            i2c
            invokestatic sun.text.normalizer.UTF16.isLeadSurrogate:(C)Z
            ifeq 9
         2: .line 147
            aload 0 /* this */
            invokevirtual sun.text.normalizer.UCharacterIterator.next:()I
            istore 2 /* ch2 */
        start local 2 // int ch2
         3: .line 148
            iload 2 /* ch2 */
            i2c
            invokestatic sun.text.normalizer.UTF16.isTrailSurrogate:(C)Z
            ifeq 7
         4: .line 149
            iload 1 /* ch1 */
            i2c
         5: .line 150
            iload 2 /* ch2 */
            i2c
         6: .line 149
            invokestatic sun.text.normalizer.UCharacterProperty.getRawSupplementary:(CC)I
            ireturn
         7: .line 151
      StackMap locals: int int
      StackMap stack:
            iload 2 /* ch2 */
            iconst_m1
            if_icmpeq 9
         8: .line 153
            aload 0 /* this */
            invokevirtual sun.text.normalizer.UCharacterIterator.previous:()I
            pop
        end local 2 // int ch2
         9: .line 156
      StackMap locals:
      StackMap stack:
            iload 1 /* ch1 */
            ireturn
        end local 1 // int ch1
        end local 0 // sun.text.normalizer.UCharacterIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lsun/text/normalizer/UCharacterIterator;
            1   10     1   ch1  I
            3    9     2   ch2  I

  public abstract int previous();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public int previousCodePoint();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // sun.text.normalizer.UCharacterIterator this
         0: .line 183
            aload 0 /* this */
            invokevirtual sun.text.normalizer.UCharacterIterator.previous:()I
            istore 1 /* ch1 */
        start local 1 // int ch1
         1: .line 184
            iload 1 /* ch1 */
            i2c
            invokestatic sun.text.normalizer.UTF16.isTrailSurrogate:(C)Z
            ifeq 9
         2: .line 185
            aload 0 /* this */
            invokevirtual sun.text.normalizer.UCharacterIterator.previous:()I
            istore 2 /* ch2 */
        start local 2 // int ch2
         3: .line 186
            iload 2 /* ch2 */
            i2c
            invokestatic sun.text.normalizer.UTF16.isLeadSurrogate:(C)Z
            ifeq 7
         4: .line 187
            iload 2 /* ch2 */
            i2c
         5: .line 188
            iload 1 /* ch1 */
            i2c
         6: .line 187
            invokestatic sun.text.normalizer.UCharacterProperty.getRawSupplementary:(CC)I
            ireturn
         7: .line 189
      StackMap locals: int int
      StackMap stack:
            iload 2 /* ch2 */
            iconst_m1
            if_icmpeq 9
         8: .line 191
            aload 0 /* this */
            invokevirtual sun.text.normalizer.UCharacterIterator.next:()I
            pop
        end local 2 // int ch2
         9: .line 194
      StackMap locals:
      StackMap stack:
            iload 1 /* ch1 */
            ireturn
        end local 1 // int ch1
        end local 0 // sun.text.normalizer.UCharacterIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lsun/text/normalizer/UCharacterIterator;
            1   10     1   ch1  I
            3    9     2   ch2  I

  public abstract void setIndex(int);
    descriptor: (I)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  

  public void setToStart();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.text.normalizer.UCharacterIterator this
         0: .line 211
            aload 0 /* this */
            iconst_0
            invokevirtual sun.text.normalizer.UCharacterIterator.setIndex:(I)V
         1: .line 212
            return
        end local 0 // sun.text.normalizer.UCharacterIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/text/normalizer/UCharacterIterator;

  public abstract int getText(char[], int);
    descriptor: ([CI)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
        Name  Flags
      fillIn  
      offset  

  public final int getText(char[]);
    descriptor: ([C)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.text.normalizer.UCharacterIterator this
        start local 1 // char[] fillIn
         0: .line 260
            aload 0 /* this */
            aload 1 /* fillIn */
            iconst_0
            invokevirtual sun.text.normalizer.UCharacterIterator.getText:([CI)I
            ireturn
        end local 1 // char[] fillIn
        end local 0 // sun.text.normalizer.UCharacterIterator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lsun/text/normalizer/UCharacterIterator;
            0    1     1  fillIn  [C
    MethodParameters:
        Name  Flags
      fillIn  

  public java.lang.String getText();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // sun.text.normalizer.UCharacterIterator this
         0: .line 269
            aload 0 /* this */
            invokevirtual sun.text.normalizer.UCharacterIterator.getLength:()I
            newarray 5
            astore 1 /* text */
        start local 1 // char[] text
         1: .line 270
            aload 0 /* this */
            aload 1 /* text */
            invokevirtual sun.text.normalizer.UCharacterIterator.getText:([C)I
            pop
         2: .line 271
            new java.lang.String
            dup
            aload 1 /* text */
            invokespecial java.lang.String.<init>:([C)V
            areturn
        end local 1 // char[] text
        end local 0 // sun.text.normalizer.UCharacterIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/text/normalizer/UCharacterIterator;
            1    3     1  text  [C

  public int moveCodePointIndex(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.text.normalizer.UCharacterIterator this
        start local 1 // int delta
         0: .line 291
            iload 1 /* delta */
            ifle 6
         1: .line 292
            goto 3
      StackMap locals:
      StackMap stack:
         2: iinc 1 /* delta */ -1
      StackMap locals:
      StackMap stack:
         3: iload 1 /* delta */
            ifle 7
            aload 0 /* this */
            invokevirtual sun.text.normalizer.UCharacterIterator.nextCodePoint:()I
            iconst_m1
            if_icmpne 2
         4: .line 293
            goto 7
         5: .line 294
      StackMap locals:
      StackMap stack:
            iinc 1 /* delta */ 1
      StackMap locals:
      StackMap stack:
         6: iload 1 /* delta */
            ifge 7
            aload 0 /* this */
            invokevirtual sun.text.normalizer.UCharacterIterator.previousCodePoint:()I
            iconst_m1
            if_icmpne 5
         7: .line 296
      StackMap locals:
      StackMap stack:
            iload 1 /* delta */
            ifeq 9
         8: .line 297
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         9: .line 300
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.text.normalizer.UCharacterIterator.getIndex:()I
            ireturn
        end local 1 // int delta
        end local 0 // sun.text.normalizer.UCharacterIterator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lsun/text/normalizer/UCharacterIterator;
            0   10     1  delta  I
    MethodParameters:
       Name  Flags
      delta  

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.text.normalizer.UCharacterIterator this
         0: .line 310
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            areturn
        end local 0 // sun.text.normalizer.UCharacterIterator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/text/normalizer/UCharacterIterator;
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
SourceFile: "UCharacterIterator.java"