public abstract class org.springframework.util.SystemPropertyUtils
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.springframework.util.SystemPropertyUtils
  super_class: java.lang.Object
{
  public static final java.lang.String PLACEHOLDER_PREFIX;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "${"

  public static final java.lang.String PLACEHOLDER_SUFFIX;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "}"

  public static final java.lang.String VALUE_SEPARATOR;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: ":"

  private static final org.springframework.util.PropertyPlaceholderHelper strictHelper;
    descriptor: Lorg/springframework/util/PropertyPlaceholderHelper;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final org.springframework.util.PropertyPlaceholderHelper nonStrictHelper;
    descriptor: Lorg/springframework/util/PropertyPlaceholderHelper;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=0, args_size=0
         0: .line 49
            new org.springframework.util.PropertyPlaceholderHelper
            dup
            ldc "${"
            ldc "}"
            ldc ":"
            iconst_0
            invokespecial org.springframework.util.PropertyPlaceholderHelper.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)V
         1: .line 48
            putstatic org.springframework.util.SystemPropertyUtils.strictHelper:Lorg/springframework/util/PropertyPlaceholderHelper;
         2: .line 52
            new org.springframework.util.PropertyPlaceholderHelper
            dup
            ldc "${"
            ldc "}"
            ldc ":"
            iconst_1
            invokespecial org.springframework.util.PropertyPlaceholderHelper.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)V
         3: .line 51
            putstatic org.springframework.util.SystemPropertyUtils.nonStrictHelper:Lorg/springframework/util/PropertyPlaceholderHelper;
         4: .line 52
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.util.SystemPropertyUtils this
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.springframework.util.SystemPropertyUtils this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/util/SystemPropertyUtils;

  public static java.lang.String resolvePlaceholders(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.String text
         0: .line 65
            aload 0 /* text */
            iconst_0
            invokestatic org.springframework.util.SystemPropertyUtils.resolvePlaceholders:(Ljava/lang/String;Z)Ljava/lang/String;
            areturn
        end local 0 // java.lang.String text
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  text  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      text  

  public static java.lang.String resolvePlaceholders(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)Ljava/lang/String;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // java.lang.String text
        start local 1 // boolean ignoreUnresolvablePlaceholders
         0: .line 81
            iload 1 /* ignoreUnresolvablePlaceholders */
            ifeq 1
            getstatic org.springframework.util.SystemPropertyUtils.nonStrictHelper:Lorg/springframework/util/PropertyPlaceholderHelper;
            goto 2
      StackMap locals:
      StackMap stack:
         1: getstatic org.springframework.util.SystemPropertyUtils.strictHelper:Lorg/springframework/util/PropertyPlaceholderHelper;
      StackMap locals:
      StackMap stack: org.springframework.util.PropertyPlaceholderHelper
         2: astore 2 /* helper */
        start local 2 // org.springframework.util.PropertyPlaceholderHelper helper
         3: .line 82
            aload 2 /* helper */
            aload 0 /* text */
            new org.springframework.util.SystemPropertyUtils$SystemPropertyPlaceholderResolver
            dup
            aload 0 /* text */
            invokespecial org.springframework.util.SystemPropertyUtils$SystemPropertyPlaceholderResolver.<init>:(Ljava/lang/String;)V
            invokevirtual org.springframework.util.PropertyPlaceholderHelper.replacePlaceholders:(Ljava/lang/String;Lorg/springframework/util/PropertyPlaceholderHelper$PlaceholderResolver;)Ljava/lang/String;
            areturn
        end local 2 // org.springframework.util.PropertyPlaceholderHelper helper
        end local 1 // boolean ignoreUnresolvablePlaceholders
        end local 0 // java.lang.String text
      LocalVariableTable:
        Start  End  Slot                            Name  Signature
            0    4     0                            text  Ljava/lang/String;
            0    4     1  ignoreUnresolvablePlaceholders  Z
            3    4     2                          helper  Lorg/springframework/util/PropertyPlaceholderHelper;
    MethodParameters:
                                Name  Flags
      text                            
      ignoreUnresolvablePlaceholders  
}
SourceFile: "SystemPropertyUtils.java"
NestMembers:
  org.springframework.util.SystemPropertyUtils$SystemPropertyPlaceholderResolver
InnerClasses:
  public abstract PlaceholderResolver = org.springframework.util.PropertyPlaceholderHelper$PlaceholderResolver of org.springframework.util.PropertyPlaceholderHelper
  private SystemPropertyPlaceholderResolver = org.springframework.util.SystemPropertyUtils$SystemPropertyPlaceholderResolver of org.springframework.util.SystemPropertyUtils