public class sun.security.x509.DNSName implements sun.security.x509.GeneralNameInterface
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.security.x509.DNSName
  super_class: java.lang.Object
{
  private java.lang.String name;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private static final java.lang.String alphaDigits;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"

  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.DNSName this
        start local 1 // sun.security.util.DerValue derValue
         0: .line 64
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 65
            aload 0 /* this */
            aload 1 /* derValue */
            invokevirtual sun.security.util.DerValue.getIA5String:()Ljava/lang/String;
            putfield sun.security.x509.DNSName.name:Ljava/lang/String;
         2: .line 66
            return
        end local 1 // sun.security.util.DerValue derValue
        end local 0 // sun.security.x509.DNSName this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lsun/security/x509/DNSName;
            0    3     1  derValue  Lsun/security/util/DerValue;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      derValue  

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // sun.security.x509.DNSName this
        start local 1 // java.lang.String name
         0: .line 74
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 75
            aload 1 /* name */
            ifnull 2
            aload 1 /* name */
            invokevirtual java.lang.String.isEmpty:()Z
            ifeq 3
         2: .line 76
      StackMap locals: sun.security.x509.DNSName java.lang.String
      StackMap stack:
            new java.io.IOException
            dup
            ldc "DNSName must not be null or empty"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 77
      StackMap locals:
      StackMap stack:
            aload 1 /* name */
            ldc " "
            invokevirtual java.lang.String.contains:(Ljava/lang/CharSequence;)Z
            ifeq 5
         4: .line 78
            new java.io.IOException
            dup
            ldc "DNSName with blank components is not permitted"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 79
      StackMap locals:
      StackMap stack:
            aload 1 /* name */
            ldc "."
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifne 6
            aload 1 /* name */
            ldc "."
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifeq 7
         6: .line 80
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            ldc "DNSName may not begin or end with a ."
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 86
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* startIndex */
        start local 3 // int startIndex
         8: goto 24
         9: .line 87
      StackMap locals: sun.security.x509.DNSName java.lang.String top int
      StackMap stack:
            aload 1 /* name */
            bipush 46
            iload 3 /* startIndex */
            invokevirtual java.lang.String.indexOf:(II)I
            istore 2 /* endIndex */
        start local 2 // int endIndex
        10: .line 88
            iload 2 /* endIndex */
            ifge 12
        11: .line 89
            aload 1 /* name */
            invokevirtual java.lang.String.length:()I
            istore 2 /* endIndex */
        12: .line 91
      StackMap locals: sun.security.x509.DNSName java.lang.String int int
      StackMap stack:
            iload 2 /* endIndex */
            iload 3 /* startIndex */
            isub
            iconst_1
            if_icmpge 14
        13: .line 92
            new java.io.IOException
            dup
            ldc "DNSName with empty components are not permitted"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        14: .line 95
      StackMap locals:
      StackMap stack:
            ldc "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
            aload 1 /* name */
            iload 3 /* startIndex */
            invokevirtual java.lang.String.charAt:(I)C
            invokevirtual java.lang.String.indexOf:(I)I
            ifge 16
        15: .line 96
            new java.io.IOException
            dup
            ldc "DNSName components must begin with a letter or digit"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        16: .line 98
      StackMap locals:
      StackMap stack:
            iload 3 /* startIndex */
            iconst_1
            iadd
            istore 4 /* nonStartIndex */
        start local 4 // int nonStartIndex
        17: goto 22
        18: .line 99
      StackMap locals: int
      StackMap stack:
            aload 1 /* name */
            iload 4 /* nonStartIndex */
            invokevirtual java.lang.String.charAt:(I)C
            istore 5 /* x */
        start local 5 // char x
        19: .line 100
            ldc "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
            iload 5 /* x */
            invokevirtual java.lang.String.indexOf:(I)I
            ifge 21
            iload 5 /* x */
            bipush 45
            if_icmpeq 21
        20: .line 101
            new java.io.IOException
            dup
            ldc "DNSName components must consist of letters, digits, and hyphens"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 5 // char x
        21: .line 98
      StackMap locals:
      StackMap stack:
            iinc 4 /* nonStartIndex */ 1
      StackMap locals:
      StackMap stack:
        22: iload 4 /* nonStartIndex */
            iload 2 /* endIndex */
            if_icmplt 18
        end local 4 // int nonStartIndex
        23: .line 86
            iload 2 /* endIndex */
            iconst_1
            iadd
            istore 3 /* startIndex */
        end local 2 // int endIndex
      StackMap locals: sun.security.x509.DNSName java.lang.String top int
      StackMap stack:
        24: iload 3 /* startIndex */
            aload 1 /* name */
            invokevirtual java.lang.String.length:()I
            if_icmplt 9
        end local 3 // int startIndex
        25: .line 104
            aload 0 /* this */
            aload 1 /* name */
            putfield sun.security.x509.DNSName.name:Ljava/lang/String;
        26: .line 105
            return
        end local 1 // java.lang.String name
        end local 0 // sun.security.x509.DNSName this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   27     0           this  Lsun/security/x509/DNSName;
            0   27     1           name  Ljava/lang/String;
           10   24     2       endIndex  I
            8   25     3     startIndex  I
           17   23     4  nonStartIndex  I
           19   21     5              x  C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      name  

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

  public java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.x509.DNSName this
         0: .line 119
            aload 0 /* this */
            getfield sun.security.x509.DNSName.name:Ljava/lang/String;
            areturn
        end local 0 // sun.security.x509.DNSName this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/x509/DNSName;

  public void encode(sun.security.util.DerOutputStream);
    descriptor: (Lsun/security/util/DerOutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.x509.DNSName this
        start local 1 // sun.security.util.DerOutputStream out
         0: .line 129
            aload 1 /* out */
            aload 0 /* this */
            getfield sun.security.x509.DNSName.name:Ljava/lang/String;
            invokevirtual sun.security.util.DerOutputStream.putIA5String:(Ljava/lang/String;)V
         1: .line 130
            return
        end local 1 // sun.security.util.DerOutputStream out
        end local 0 // sun.security.x509.DNSName this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/x509/DNSName;
            0    2     1   out  Lsun/security/util/DerOutputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.security.x509.DNSName this
         0: .line 136
            new java.lang.StringBuilder
            dup
            ldc "DNSName: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield sun.security.x509.DNSName.name:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // sun.security.x509.DNSName this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/x509/DNSName;

  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 // sun.security.x509.DNSName this
        start local 1 // java.lang.Object obj
         0: .line 146
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 147
            iconst_1
            ireturn
         2: .line 149
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof sun.security.x509.DNSName
            ifne 4
         3: .line 150
            iconst_0
            ireturn
         4: .line 152
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast sun.security.x509.DNSName
            astore 2 /* other */
        start local 2 // sun.security.x509.DNSName other
         5: .line 156
            aload 0 /* this */
            getfield sun.security.x509.DNSName.name:Ljava/lang/String;
            aload 2 /* other */
            getfield sun.security.x509.DNSName.name:Ljava/lang/String;
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ireturn
        end local 2 // sun.security.x509.DNSName other
        end local 1 // java.lang.Object obj
        end local 0 // sun.security.x509.DNSName this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lsun/security/x509/DNSName;
            0    6     1    obj  Ljava/lang/Object;
            5    6     2  other  Lsun/security/x509/DNSName;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.security.x509.DNSName this
         0: .line 165
            aload 0 /* this */
            getfield sun.security.x509.DNSName.name:Ljava/lang/String;
            getstatic java.util.Locale.ENGLISH:Ljava/util/Locale;
            invokevirtual java.lang.String.toUpperCase:(Ljava/util/Locale;)Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            ireturn
        end local 0 // sun.security.x509.DNSName this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/x509/DNSName;

  public int constrains(sun.security.x509.GeneralNameInterface);
    descriptor: (Lsun/security/x509/GeneralNameInterface;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // sun.security.x509.DNSName this
        start local 1 // sun.security.x509.GeneralNameInterface inputName
         0: .line 202
            aload 1 /* inputName */
            ifnonnull 3
         1: .line 203
            iconst_m1
            istore 2 /* constraintType */
        start local 2 // int constraintType
         2: goto 27
        end local 2 // int constraintType
         3: .line 204
      StackMap locals:
      StackMap stack:
            aload 1 /* inputName */
            invokeinterface sun.security.x509.GeneralNameInterface.getType:()I
            iconst_2
            if_icmpeq 6
         4: .line 205
            iconst_m1
            istore 2 /* constraintType */
        start local 2 // int constraintType
         5: goto 27
        end local 2 // int constraintType
         6: .line 208
      StackMap locals:
      StackMap stack:
            aload 1 /* inputName */
            checkcast sun.security.x509.DNSName
            invokevirtual sun.security.x509.DNSName.getName:()Ljava/lang/String;
            getstatic java.util.Locale.ENGLISH:Ljava/util/Locale;
            invokevirtual java.lang.String.toLowerCase:(Ljava/util/Locale;)Ljava/lang/String;
         7: .line 207
            astore 3 /* inName */
        start local 3 // java.lang.String inName
         8: .line 209
            aload 0 /* this */
            getfield sun.security.x509.DNSName.name:Ljava/lang/String;
            getstatic java.util.Locale.ENGLISH:Ljava/util/Locale;
            invokevirtual java.lang.String.toLowerCase:(Ljava/util/Locale;)Ljava/lang/String;
            astore 4 /* thisName */
        start local 4 // java.lang.String thisName
         9: .line 210
            aload 3 /* inName */
            aload 4 /* thisName */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 12
        10: .line 211
            iconst_0
            istore 2 /* constraintType */
        start local 2 // int constraintType
        11: goto 27
        end local 2 // int constraintType
        12: .line 212
      StackMap locals: sun.security.x509.DNSName sun.security.x509.GeneralNameInterface top java.lang.String java.lang.String
      StackMap stack:
            aload 4 /* thisName */
            aload 3 /* inName */
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifeq 19
        13: .line 213
            aload 4 /* thisName */
            aload 3 /* inName */
            invokevirtual java.lang.String.lastIndexOf:(Ljava/lang/String;)I
            istore 5 /* inNdx */
        start local 5 // int inNdx
        14: .line 214
            aload 4 /* thisName */
            iload 5 /* inNdx */
            iconst_1
            isub
            invokevirtual java.lang.String.charAt:(I)C
            bipush 46
            if_icmpne 17
        15: .line 215
            iconst_2
            istore 2 /* constraintType */
        start local 2 // int constraintType
        16: goto 27
        end local 2 // int constraintType
        17: .line 217
      StackMap locals: int
      StackMap stack:
            iconst_3
            istore 2 /* constraintType */
        end local 5 // int inNdx
        start local 2 // int constraintType
        18: .line 218
            goto 27
        end local 2 // int constraintType
      StackMap locals:
      StackMap stack:
        19: aload 3 /* inName */
            aload 4 /* thisName */
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifeq 26
        20: .line 219
            aload 3 /* inName */
            aload 4 /* thisName */
            invokevirtual java.lang.String.lastIndexOf:(Ljava/lang/String;)I
            istore 5 /* ndx */
        start local 5 // int ndx
        21: .line 220
            aload 3 /* inName */
            iload 5 /* ndx */
            iconst_1
            isub
            invokevirtual java.lang.String.charAt:(I)C
            bipush 46
            if_icmpne 24
        22: .line 221
            iconst_1
            istore 2 /* constraintType */
        start local 2 // int constraintType
        23: goto 27
        end local 2 // int constraintType
        24: .line 223
      StackMap locals: int
      StackMap stack:
            iconst_3
            istore 2 /* constraintType */
        end local 5 // int ndx
        start local 2 // int constraintType
        25: .line 224
            goto 27
        end local 2 // int constraintType
        26: .line 225
      StackMap locals:
      StackMap stack:
            iconst_3
            istore 2 /* constraintType */
        end local 4 // java.lang.String thisName
        end local 3 // java.lang.String inName
        start local 2 // int constraintType
        27: .line 228
      StackMap locals: sun.security.x509.DNSName sun.security.x509.GeneralNameInterface 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.DNSName this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   28     0            this  Lsun/security/x509/DNSName;
            0   28     1       inputName  Lsun/security/x509/GeneralNameInterface;
            2    3     2  constraintType  I
            5    6     2  constraintType  I
           11   12     2  constraintType  I
           16   17     2  constraintType  I
           18   19     2  constraintType  I
           23   24     2  constraintType  I
           25   26     2  constraintType  I
           27   28     2  constraintType  I
            8   27     3          inName  Ljava/lang/String;
            9   27     4        thisName  Ljava/lang/String;
           14   18     5           inNdx  I
           21   25     5             ndx  I
    Exceptions:
      throws java.lang.UnsupportedOperationException
    MethodParameters:
           Name  Flags
      inputName  

  public int subtreeDepth();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // sun.security.x509.DNSName this
         0: .line 241
            iconst_1
            istore 1 /* sum */
        start local 1 // int sum
         1: .line 244
            aload 0 /* this */
            getfield sun.security.x509.DNSName.name:Ljava/lang/String;
            bipush 46
            invokevirtual java.lang.String.indexOf:(I)I
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 245
      StackMap locals: int int
      StackMap stack:
            iinc 1 /* sum */ 1
         4: .line 244
            aload 0 /* this */
            getfield sun.security.x509.DNSName.name:Ljava/lang/String;
            bipush 46
            iload 2 /* i */
            iconst_1
            iadd
            invokevirtual java.lang.String.indexOf:(II)I
            istore 2 /* i */
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            ifge 3
        end local 2 // int i
         6: .line 248
            iload 1 /* sum */
            ireturn
        end local 1 // int sum
        end local 0 // sun.security.x509.DNSName this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lsun/security/x509/DNSName;
            1    7     1   sum  I
            2    6     2     i  I
    Exceptions:
      throws java.lang.UnsupportedOperationException
}
SourceFile: "DNSName.java"