public class sun.security.x509.X400Address implements sun.security.x509.GeneralNameInterface
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.security.x509.X400Address
  super_class: java.lang.Object
{
  byte[] nameValue;
    descriptor: [B
    flags: (0x0000) 

  public void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.x509.X400Address this
        start local 1 // byte[] value
         0: .line 345
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 338
            aload 0 /* this */
            aconst_null
            putfield sun.security.x509.X400Address.nameValue:[B
         2: .line 346
            aload 0 /* this */
            aload 1 /* value */
            putfield sun.security.x509.X400Address.nameValue:[B
         3: .line 347
            return
        end local 1 // byte[] value
        end local 0 // sun.security.x509.X400Address this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lsun/security/x509/X400Address;
            0    4     1  value  [B
    MethodParameters:
       Name  Flags
      value  

  public void <init>(sun.security.util.DerValue);
    descriptor: (Lsun/security/util/DerValue;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.x509.X400Address this
        start local 1 // sun.security.util.DerValue derValue
         0: .line 355
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 338
            aload 0 /* this */
            aconst_null
            putfield sun.security.x509.X400Address.nameValue:[B
         2: .line 356
            aload 0 /* this */
            aload 1 /* derValue */
            invokevirtual sun.security.util.DerValue.toByteArray:()[B
            putfield sun.security.x509.X400Address.nameValue:[B
         3: .line 357
            return
        end local 1 // sun.security.util.DerValue derValue
        end local 0 // sun.security.x509.X400Address this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lsun/security/x509/X400Address;
            0    4     1  derValue  Lsun/security/util/DerValue;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      derValue  

  public int getType();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.x509.X400Address this
         0: .line 363
            iconst_3
            ireturn
        end local 0 // sun.security.x509.X400Address this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/x509/X400Address;

  public void encode(sun.security.util.DerOutputStream);
    descriptor: (Lsun/security/util/DerOutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.security.x509.X400Address this
        start local 1 // sun.security.util.DerOutputStream out
         0: .line 373
            new sun.security.util.DerValue
            dup
            aload 0 /* this */
            getfield sun.security.x509.X400Address.nameValue:[B
            invokespecial sun.security.util.DerValue.<init>:([B)V
            astore 2 /* derValue */
        start local 2 // sun.security.util.DerValue derValue
         1: .line 374
            aload 1 /* out */
            aload 2 /* derValue */
            invokevirtual sun.security.util.DerOutputStream.putDerValue:(Lsun/security/util/DerValue;)V
         2: .line 375
            return
        end local 2 // sun.security.util.DerValue derValue
        end local 1 // sun.security.util.DerOutputStream out
        end local 0 // sun.security.x509.X400Address this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lsun/security/x509/X400Address;
            0    3     1       out  Lsun/security/util/DerOutputStream;
            1    3     2  derValue  Lsun/security/util/DerValue;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.x509.X400Address this
         0: .line 381
            ldc "X400Address: <DER-encoded value>"
            areturn
        end local 0 // sun.security.x509.X400Address this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/x509/X400Address;

  public int constrains(sun.security.x509.GeneralNameInterface);
    descriptor: (Lsun/security/x509/GeneralNameInterface;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.security.x509.X400Address this
        start local 1 // sun.security.x509.GeneralNameInterface inputName
         0: .line 401
            aload 1 /* inputName */
            ifnonnull 3
         1: .line 402
            iconst_m1
            istore 2 /* constraintType */
        start local 2 // int constraintType
         2: goto 7
        end local 2 // int constraintType
         3: .line 403
      StackMap locals:
      StackMap stack:
            aload 1 /* inputName */
            invokeinterface sun.security.x509.GeneralNameInterface.getType:()I
            iconst_3
            if_icmpeq 6
         4: .line 404
            iconst_m1
            istore 2 /* constraintType */
        start local 2 // int constraintType
         5: goto 7
        end local 2 // int constraintType
         6: .line 407
      StackMap locals:
      StackMap stack:
            new java.lang.UnsupportedOperationException
            dup
            ldc "Narrowing, widening, and match are not supported for X400Address."
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        start local 2 // int constraintType
         7: .line 408
      StackMap locals: int
      StackMap stack:
            iload 2 /* constraintType */
            ireturn
        end local 2 // int constraintType
        end local 1 // sun.security.x509.GeneralNameInterface inputName
        end local 0 // sun.security.x509.X400Address this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    8     0            this  Lsun/security/x509/X400Address;
            0    8     1       inputName  Lsun/security/x509/GeneralNameInterface;
            2    3     2  constraintType  I
            5    6     2  constraintType  I
            7    8     2  constraintType  I
    Exceptions:
      throws java.lang.UnsupportedOperationException
    MethodParameters:
           Name  Flags
      inputName  

  public int subtreeDepth();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.security.x509.X400Address this
         0: .line 420
            new java.lang.UnsupportedOperationException
            dup
            ldc "subtreeDepth not supported for X400Address"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // sun.security.x509.X400Address this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/x509/X400Address;
    Exceptions:
      throws java.lang.UnsupportedOperationException
}
SourceFile: "X400Address.java"