final class com.google.common.math.LinearTransformation$VerticalLinearTransformation 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$VerticalLinearTransformation
super_class: com.google.common.math.LinearTransformation
{
final double x;
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);
descriptor: (D)V
flags: (0x0000)
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 0
invokespecial com.google.common.math.LinearTransformation.<init>:()V
1: aload 0
dload 1
putfield com.google.common.math.LinearTransformation$VerticalLinearTransformation.x:D
2: aload 0
aconst_null
putfield com.google.common.math.LinearTransformation$VerticalLinearTransformation.inverse:Lcom/google/common/math/LinearTransformation;
3: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lcom/google/common/math/LinearTransformation$VerticalLinearTransformation;
0 4 1 x D
MethodParameters:
Name Flags
x
void <init>(double, com.google.common.math.LinearTransformation);
descriptor: (DLcom/google/common/math/LinearTransformation;)V
flags: (0x0000)
Code:
stack=3, locals=4, 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$VerticalLinearTransformation.x:D
2: aload 0
aload 3
putfield com.google.common.math.LinearTransformation$VerticalLinearTransformation.inverse:Lcom/google/common/math/LinearTransformation;
3: return
end local 3 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lcom/google/common/math/LinearTransformation$VerticalLinearTransformation;
0 4 1 x D
0 4 3 inverse Lcom/google/common/math/LinearTransformation;
MethodParameters:
Name Flags
x
inverse
public boolean isVertical();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: iconst_1
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/google/common/math/LinearTransformation$VerticalLinearTransformation;
public boolean isHorizontal();
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$VerticalLinearTransformation;
public double slope();
descriptor: ()D
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: new java.lang.IllegalStateException
dup
invokespecial java.lang.IllegalStateException.<init>:()V
athrow
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/google/common/math/LinearTransformation$VerticalLinearTransformation;
public double transform(double);
descriptor: (D)D
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=3, args_size=2
start local 0 start local 1 0: new java.lang.IllegalStateException
dup
invokespecial java.lang.IllegalStateException.<init>:()V
athrow
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/google/common/math/LinearTransformation$VerticalLinearTransformation;
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$VerticalLinearTransformation.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$VerticalLinearTransformation.createInverse:()Lcom/google/common/math/LinearTransformation;
dup_x1
putfield com.google.common.math.LinearTransformation$VerticalLinearTransformation.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$VerticalLinearTransformation;
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 "x = %g"
iconst_1
anewarray java.lang.Object
dup
iconst_0
aload 0
getfield com.google.common.math.LinearTransformation$VerticalLinearTransformation.x: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$VerticalLinearTransformation;
private com.google.common.math.LinearTransformation createInverse();
descriptor: ()Lcom/google/common/math/LinearTransformation;
flags: (0x0002) ACC_PRIVATE
Code:
stack=7, locals=1, args_size=1
start local 0 0: new com.google.common.math.LinearTransformation$RegularLinearTransformation
dup
dconst_0
aload 0
getfield com.google.common.math.LinearTransformation$VerticalLinearTransformation.x:D
aload 0
invokespecial com.google.common.math.LinearTransformation$RegularLinearTransformation.<init>:(DDLcom/google/common/math/LinearTransformation;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/google/common/math/LinearTransformation$VerticalLinearTransformation;
}
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