final class com.google.common.math.LinearTransformation$RegularLinearTransformation extends com.google.common.math.LinearTransformation
minor version: 0
major version: 59
flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
this_class: com.google.common.math.LinearTransformation$RegularLinearTransformation
super_class: com.google.common.math.LinearTransformation
{
final double slope;
descriptor: D
flags: (0x0010) ACC_FINAL
final double yIntercept;
descriptor: D
flags: (0x0010) ACC_FINAL
com.google.common.math.LinearTransformation inverse;
descriptor: Lcom/google/common/math/LinearTransformation;
flags: (0x0000)
RuntimeVisibleAnnotations:
com.google.errorprone.annotations.concurrent.LazyInit()
void <init>(double, double);
descriptor: (DD)V
flags: (0x0000)
Code:
stack=3, locals=5, args_size=3
start local 0 start local 1 start local 3 0: aload 0
invokespecial com.google.common.math.LinearTransformation.<init>:()V
1: aload 0
dload 1
putfield com.google.common.math.LinearTransformation$RegularLinearTransformation.slope:D
2: aload 0
dload 3
putfield com.google.common.math.LinearTransformation$RegularLinearTransformation.yIntercept:D
3: aload 0
aconst_null
putfield com.google.common.math.LinearTransformation$RegularLinearTransformation.inverse:Lcom/google/common/math/LinearTransformation;
4: return
end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lcom/google/common/math/LinearTransformation$RegularLinearTransformation;
0 5 1 slope D
0 5 3 yIntercept D
MethodParameters:
Name Flags
slope
yIntercept
void <init>(double, double, com.google.common.math.LinearTransformation);
descriptor: (DDLcom/google/common/math/LinearTransformation;)V
flags: (0x0000)
Code:
stack=3, locals=6, args_size=4
start local 0 start local 1 start local 3 start local 5 0: aload 0
invokespecial com.google.common.math.LinearTransformation.<init>:()V
1: aload 0
dload 1
putfield com.google.common.math.LinearTransformation$RegularLinearTransformation.slope:D
2: aload 0
dload 3
putfield com.google.common.math.LinearTransformation$RegularLinearTransformation.yIntercept:D
3: aload 0
aload 5
putfield com.google.common.math.LinearTransformation$RegularLinearTransformation.inverse:Lcom/google/common/math/LinearTransformation;
4: return
end local 5 end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lcom/google/common/math/LinearTransformation$RegularLinearTransformation;
0 5 1 slope D
0 5 3 yIntercept D
0 5 5 inverse Lcom/google/common/math/LinearTransformation;
MethodParameters:
Name Flags
slope
yIntercept
inverse
public boolean isVertical();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: iconst_0
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/google/common/math/LinearTransformation$RegularLinearTransformation;
public boolean isHorizontal();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=1, args_size=1
start local 0 0: aload 0
getfield com.google.common.math.LinearTransformation$RegularLinearTransformation.slope:D
dconst_0
dcmpl
ifne 1
iconst_1
ireturn
StackMap locals:
StackMap stack:
1: iconst_0
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lcom/google/common/math/LinearTransformation$RegularLinearTransformation;
public double slope();
descriptor: ()D
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
getfield com.google.common.math.LinearTransformation$RegularLinearTransformation.slope:D
dreturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/google/common/math/LinearTransformation$RegularLinearTransformation;
public double transform(double);
descriptor: (D)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=2
start local 0 start local 1 0: dload 1
aload 0
getfield com.google.common.math.LinearTransformation$RegularLinearTransformation.slope:D
dmul
aload 0
getfield com.google.common.math.LinearTransformation$RegularLinearTransformation.yIntercept:D
dadd
dreturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/google/common/math/LinearTransformation$RegularLinearTransformation;
0 1 1 x D
MethodParameters:
Name Flags
x
public com.google.common.math.LinearTransformation inverse();
descriptor: ()Lcom/google/common/math/LinearTransformation;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=1
start local 0 0: aload 0
getfield com.google.common.math.LinearTransformation$RegularLinearTransformation.inverse:Lcom/google/common/math/LinearTransformation;
astore 1
start local 1 1: aload 1
ifnonnull 2
aload 0
aload 0
invokevirtual com.google.common.math.LinearTransformation$RegularLinearTransformation.createInverse:()Lcom/google/common/math/LinearTransformation;
dup_x1
putfield com.google.common.math.LinearTransformation$RegularLinearTransformation.inverse:Lcom/google/common/math/LinearTransformation;
goto 3
StackMap locals: com.google.common.math.LinearTransformation
StackMap stack:
2: aload 1
StackMap locals:
StackMap stack: com.google.common.math.LinearTransformation
3: areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lcom/google/common/math/LinearTransformation$RegularLinearTransformation;
1 4 1 result Lcom/google/common/math/LinearTransformation;
public java.lang.String toString();
descriptor: ()Ljava/lang/String;
flags: (0x0001) ACC_PUBLIC
Code:
stack=6, locals=1, args_size=1
start local 0 0: ldc "y = %g * x + %g"
iconst_2
anewarray java.lang.Object
dup
iconst_0
aload 0
getfield com.google.common.math.LinearTransformation$RegularLinearTransformation.slope:D
invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
aastore
dup
iconst_1
aload 0
getfield com.google.common.math.LinearTransformation$RegularLinearTransformation.yIntercept:D
invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
aastore
invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/google/common/math/LinearTransformation$RegularLinearTransformation;
private com.google.common.math.LinearTransformation createInverse();
descriptor: ()Lcom/google/common/math/LinearTransformation;
flags: (0x0002) ACC_PRIVATE
Code:
stack=8, locals=1, args_size=1
start local 0 0: aload 0
getfield com.google.common.math.LinearTransformation$RegularLinearTransformation.slope:D
dconst_0
dcmpl
ifeq 2
1: new com.google.common.math.LinearTransformation$RegularLinearTransformation
dup
dconst_1
aload 0
getfield com.google.common.math.LinearTransformation$RegularLinearTransformation.slope:D
ddiv
ldc -1.0
aload 0
getfield com.google.common.math.LinearTransformation$RegularLinearTransformation.yIntercept:D
dmul
aload 0
getfield com.google.common.math.LinearTransformation$RegularLinearTransformation.slope:D
ddiv
aload 0
invokespecial com.google.common.math.LinearTransformation$RegularLinearTransformation.<init>:(DDLcom/google/common/math/LinearTransformation;)V
areturn
2: StackMap locals:
StackMap stack:
new com.google.common.math.LinearTransformation$VerticalLinearTransformation
dup
aload 0
getfield com.google.common.math.LinearTransformation$RegularLinearTransformation.yIntercept:D
aload 0
invokespecial com.google.common.math.LinearTransformation$VerticalLinearTransformation.<init>:(DLcom/google/common/math/LinearTransformation;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lcom/google/common/math/LinearTransformation$RegularLinearTransformation;
}
SourceFile: "LinearTransformation.java"
NestHost: com.google.common.math.LinearTransformation
InnerClasses:
private final RegularLinearTransformation = com.google.common.math.LinearTransformation$RegularLinearTransformation of com.google.common.math.LinearTransformation
private final VerticalLinearTransformation = com.google.common.math.LinearTransformation$VerticalLinearTransformation of com.google.common.math.LinearTransformation