public class com.netflix.config.StringDerivedProperty<T> extends com.netflix.config.PropertyWrapper<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.netflix.config.StringDerivedProperty
  super_class: com.netflix.config.PropertyWrapper
{
  protected final com.google.common.base.Function<java.lang.String, T> decoder;
    descriptor: Lcom/google/common/base/Function;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Signature: Lcom/google/common/base/Function<Ljava/lang/String;TT;>;

  private volatile T derivedValue;
    descriptor: Ljava/lang/Object;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE
    Signature: TT;

  public void <init>(java.lang.String, T, com.google.common.base.Function<java.lang.String, T>);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;Lcom/google/common/base/Function;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // com.netflix.config.StringDerivedProperty this
        start local 1 // java.lang.String propName
        start local 2 // java.lang.Object defaultValue
        start local 3 // com.google.common.base.Function decoder
         0: .line 39
            aload 0 /* this */
            aload 1 /* propName */
            aload 2 /* defaultValue */
            invokespecial com.netflix.config.PropertyWrapper.<init>:(Ljava/lang/String;Ljava/lang/Object;)V
         1: .line 40
            aload 0 /* this */
            aload 3 /* decoder */
            putfield com.netflix.config.StringDerivedProperty.decoder:Lcom/google/common/base/Function;
         2: .line 41
            aload 0 /* this */
            invokevirtual com.netflix.config.StringDerivedProperty.propertyChangedInternal:()V
         3: .line 42
            return
        end local 3 // com.google.common.base.Function decoder
        end local 2 // java.lang.Object defaultValue
        end local 1 // java.lang.String propName
        end local 0 // com.netflix.config.StringDerivedProperty this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0          this  Lcom/netflix/config/StringDerivedProperty<TT;>;
            0    4     1      propName  Ljava/lang/String;
            0    4     2  defaultValue  TT;
            0    4     3       decoder  Lcom/google/common/base/Function<Ljava/lang/String;TT;>;
    Signature: (Ljava/lang/String;TT;Lcom/google/common/base/Function<Ljava/lang/String;TT;>;)V
    MethodParameters:
              Name  Flags
      propName      
      defaultValue  
      decoder       

  private final void propertyChangedInternal();
    descriptor: ()V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.netflix.config.StringDerivedProperty this
         0: .line 45
            aload 0 /* this */
            getfield com.netflix.config.StringDerivedProperty.prop:Lcom/netflix/config/DynamicProperty;
            invokevirtual com.netflix.config.DynamicProperty.getString:()Ljava/lang/String;
            astore 1 /* stringValue */
        start local 1 // java.lang.String stringValue
         1: .line 46
            aload 1 /* stringValue */
            ifnonnull 4
         2: .line 47
            aload 0 /* this */
            aload 0 /* this */
            getfield com.netflix.config.StringDerivedProperty.defaultValue:Ljava/lang/Object;
            putfield com.netflix.config.StringDerivedProperty.derivedValue:Ljava/lang/Object;
         3: .line 48
            goto 5
         4: .line 49
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.netflix.config.StringDerivedProperty.decoder:Lcom/google/common/base/Function;
            aload 1 /* stringValue */
            invokeinterface com.google.common.base.Function.apply:(Ljava/lang/Object;)Ljava/lang/Object;
            putfield com.netflix.config.StringDerivedProperty.derivedValue:Ljava/lang/Object;
         5: .line 51
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String stringValue
        end local 0 // com.netflix.config.StringDerivedProperty this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lcom/netflix/config/StringDerivedProperty<TT;>;
            1    6     1  stringValue  Ljava/lang/String;

  protected final void propertyChanged();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.netflix.config.StringDerivedProperty this
         0: .line 55
            aload 0 /* this */
            invokevirtual com.netflix.config.StringDerivedProperty.propertyChangedInternal:()V
         1: .line 56
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.netflix.config.StringDerivedProperty.getValue:()Ljava/lang/Object;
            invokevirtual com.netflix.config.StringDerivedProperty.propertyChanged:(Ljava/lang/Object;)V
         2: .line 57
            return
        end local 0 // com.netflix.config.StringDerivedProperty this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/netflix/config/StringDerivedProperty<TT;>;

  public T getValue();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.netflix.config.StringDerivedProperty this
         0: .line 61
            aload 0 /* this */
            getfield com.netflix.config.StringDerivedProperty.derivedValue:Ljava/lang/Object;
            areturn
        end local 0 // com.netflix.config.StringDerivedProperty this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/netflix/config/StringDerivedProperty<TT;>;
    Signature: ()TT;
}
Signature: <T:Ljava/lang/Object;>Lcom/netflix/config/PropertyWrapper<TT;>;
SourceFile: "StringDerivedProperty.java"