public final class java.security.spec.EdECPoint
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: java.security.spec.EdECPoint
  super_class: java.lang.Object
{
  private final boolean xOdd;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  public void <init>(boolean, java.math.BigInteger);
    descriptor: (ZLjava/math/BigInteger;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // java.security.spec.EdECPoint this
        start local 1 // boolean xOdd
        start local 2 // java.math.BigInteger y
         0: .line 61
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 63
            aload 2 /* y */
            ldc "y must not be null"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 65
            aload 0 /* this */
            iload 1 /* xOdd */
            putfield java.security.spec.EdECPoint.xOdd:Z
         3: .line 66
            aload 0 /* this */
            aload 2 /* y */
            putfield java.security.spec.EdECPoint.y:Ljava/math/BigInteger;
         4: .line 67
            return
        end local 2 // java.math.BigInteger y
        end local 1 // boolean xOdd
        end local 0 // java.security.spec.EdECPoint this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/security/spec/EdECPoint;
            0    5     1  xOdd  Z
            0    5     2     y  Ljava/math/BigInteger;
    MethodParameters:
      Name  Flags
      xOdd  
      y     

  public boolean isXOdd();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.security.spec.EdECPoint this
         0: .line 75
            aload 0 /* this */
            getfield java.security.spec.EdECPoint.xOdd:Z
            ireturn
        end local 0 // java.security.spec.EdECPoint this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/security/spec/EdECPoint;

  public java.math.BigInteger getY();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.security.spec.EdECPoint this
         0: .line 84
            aload 0 /* this */
            getfield java.security.spec.EdECPoint.y:Ljava/math/BigInteger;
            areturn
        end local 0 // java.security.spec.EdECPoint this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/security/spec/EdECPoint;
}
SourceFile: "EdECPoint.java"