public class sun.nio.cs.Surrogate
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.nio.cs.Surrogate
  super_class: java.lang.Object
{
  public static final char MIN_HIGH;
    descriptor: C
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 55296

  public static final char MAX_HIGH;
    descriptor: C
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 56319

  public static final char MIN_LOW;
    descriptor: C
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 56320

  public static final char MAX_LOW;
    descriptor: C
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 57343

  public static final char MIN;
    descriptor: C
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 55296

  public static final char MAX;
    descriptor: C
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 57343

  public static final int UCS4_MIN;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 65536

  public static final int UCS4_MAX;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1114111

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 40
            ldc Lsun/nio/cs/Surrogate;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic sun.nio.cs.Surrogate.$assertionsDisabled:Z
         3: .line 52
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.nio.cs.Surrogate this
         0: .line 42
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // sun.nio.cs.Surrogate this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/nio/cs/Surrogate;

  public static boolean isHigh(int);
    descriptor: (I)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int c
         0: .line 59
            ldc 55296
            iload 0 /* c */
            if_icmpgt 1
            iload 0 /* c */
            ldc 56319
            if_icmpgt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // int c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     c  I
    MethodParameters:
      Name  Flags
      c     

  public static boolean isLow(int);
    descriptor: (I)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int c
         0: .line 67
            ldc 56320
            iload 0 /* c */
            if_icmpgt 1
            iload 0 /* c */
            ldc 57343
            if_icmpgt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // int c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     c  I
    MethodParameters:
      Name  Flags
      c     

  public static boolean is(int);
    descriptor: (I)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int c
         0: .line 75
            ldc 55296
            iload 0 /* c */
            if_icmpgt 1
            iload 0 /* c */
            ldc 57343
            if_icmpgt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // int c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     c  I
    MethodParameters:
      Name  Flags
      c     

  public static boolean neededFor(int);
    descriptor: (I)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // int uc
         0: .line 84
            iload 0 /* uc */
            invokestatic java.lang.Character.isSupplementaryCodePoint:(I)Z
            ireturn
        end local 0 // int uc
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0    uc  I
    MethodParameters:
      Name  Flags
      uc    

  public static char high(int);
    descriptor: (I)C
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int uc
         0: .line 92
            getstatic sun.nio.cs.Surrogate.$assertionsDisabled:Z
            ifne 1
            iload 0 /* uc */
            invokestatic java.lang.Character.isSupplementaryCodePoint:(I)Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 93
      StackMap locals:
      StackMap stack:
            iload 0 /* uc */
            invokestatic java.lang.Character.highSurrogate:(I)C
            ireturn
        end local 0 // int uc
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0    uc  I
    MethodParameters:
      Name  Flags
      uc    

  public static char low(int);
    descriptor: (I)C
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int uc
         0: .line 101
            getstatic sun.nio.cs.Surrogate.$assertionsDisabled:Z
            ifne 1
            iload 0 /* uc */
            invokestatic java.lang.Character.isSupplementaryCodePoint:(I)Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 102
      StackMap locals:
      StackMap stack:
            iload 0 /* uc */
            invokestatic java.lang.Character.lowSurrogate:(I)C
            ireturn
        end local 0 // int uc
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0    uc  I
    MethodParameters:
      Name  Flags
      uc    

  public static int toUCS4(char, char);
    descriptor: (CC)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // char c
        start local 1 // char d
         0: .line 110
            getstatic sun.nio.cs.Surrogate.$assertionsDisabled:Z
            ifne 2
            iload 0 /* c */
            invokestatic java.lang.Character.isHighSurrogate:(C)Z
            ifeq 1
            iload 1 /* d */
            invokestatic java.lang.Character.isLowSurrogate:(C)Z
            ifne 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 111
      StackMap locals:
      StackMap stack:
            iload 0 /* c */
            iload 1 /* d */
            invokestatic java.lang.Character.toCodePoint:(CC)I
            ireturn
        end local 1 // char d
        end local 0 // char c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     c  C
            0    3     1     d  C
    MethodParameters:
      Name  Flags
      c     
      d     
}
SourceFile: "Surrogate.java"
NestMembers:
  sun.nio.cs.Surrogate$Generator  sun.nio.cs.Surrogate$Parser
InnerClasses:
  public Generator = sun.nio.cs.Surrogate$Generator of sun.nio.cs.Surrogate
  public Parser = sun.nio.cs.Surrogate$Parser of sun.nio.cs.Surrogate