abstract class com.google.common.hash.AbstractCompositeHashFunction extends com.google.common.hash.AbstractHashFunction
minor version: 0
major version: 59
flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
this_class: com.google.common.hash.AbstractCompositeHashFunction
super_class: com.google.common.hash.AbstractHashFunction
{
final com.google.common.hash.HashFunction[] functions;
descriptor: [Lcom/google/common/hash/HashFunction;
flags: (0x0010) ACC_FINAL
private static final long serialVersionUID;
descriptor: J
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
ConstantValue: 0
void <init>(com.google.common.hash.HashFunction[]);
descriptor: ([Lcom/google/common/hash/HashFunction;)V
flags: (0x0080) ACC_VARARGS
Code:
stack=2, locals=6, args_size=2
start local 0 start local 1 0: aload 0
invokespecial com.google.common.hash.AbstractHashFunction.<init>:()V
1: aload 1
dup
astore 5
arraylength
istore 4
iconst_0
istore 3
goto 5
StackMap locals: com.google.common.hash.AbstractCompositeHashFunction com.google.common.hash.HashFunction[] top int int com.google.common.hash.HashFunction[]
StackMap stack:
2: aload 5
iload 3
aaload
astore 2
start local 2 3: aload 2
invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
pop
end local 2 4: iinc 3 1
StackMap locals:
StackMap stack:
5: iload 3
iload 4
if_icmplt 2
6: aload 0
aload 1
putfield com.google.common.hash.AbstractCompositeHashFunction.functions:[Lcom/google/common/hash/HashFunction;
7: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 8 0 this Lcom/google/common/hash/AbstractCompositeHashFunction;
0 8 1 functions [Lcom/google/common/hash/HashFunction;
3 4 2 function Lcom/google/common/hash/HashFunction;
MethodParameters:
Name Flags
functions
abstract com.google.common.hash.HashCode makeHash(com.google.common.hash.Hasher[]);
descriptor: ([Lcom/google/common/hash/Hasher;)Lcom/google/common/hash/HashCode;
flags: (0x0400) ACC_ABSTRACT
MethodParameters:
Name Flags
hashers
public com.google.common.hash.Hasher newHasher();
descriptor: ()Lcom/google/common/hash/Hasher;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=1
start local 0 0: aload 0
getfield com.google.common.hash.AbstractCompositeHashFunction.functions:[Lcom/google/common/hash/HashFunction;
arraylength
anewarray com.google.common.hash.Hasher
astore 1
start local 1 1: iconst_0
istore 2
start local 2 2: goto 5
3: StackMap locals: com.google.common.hash.Hasher[] int
StackMap stack:
aload 1
iload 2
aload 0
getfield com.google.common.hash.AbstractCompositeHashFunction.functions:[Lcom/google/common/hash/HashFunction;
iload 2
aaload
invokeinterface com.google.common.hash.HashFunction.newHasher:()Lcom/google/common/hash/Hasher;
aastore
4: iinc 2 1
StackMap locals:
StackMap stack:
5: iload 2
aload 1
arraylength
if_icmplt 3
end local 2 6: aload 0
aload 1
invokevirtual com.google.common.hash.AbstractCompositeHashFunction.fromHashers:([Lcom/google/common/hash/Hasher;)Lcom/google/common/hash/Hasher;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 this Lcom/google/common/hash/AbstractCompositeHashFunction;
1 7 1 hashers [Lcom/google/common/hash/Hasher;
2 6 2 i I
public com.google.common.hash.Hasher newHasher(int);
descriptor: (I)Lcom/google/common/hash/Hasher;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=4, args_size=2
start local 0 start local 1 0: iload 1
iflt 1
iconst_1
goto 2
StackMap locals:
StackMap stack:
1: iconst_0
StackMap locals:
StackMap stack: int
2: invokestatic com.google.common.base.Preconditions.checkArgument:(Z)V
3: aload 0
getfield com.google.common.hash.AbstractCompositeHashFunction.functions:[Lcom/google/common/hash/HashFunction;
arraylength
anewarray com.google.common.hash.Hasher
astore 2
start local 2 4: iconst_0
istore 3
start local 3 5: goto 8
6: StackMap locals: com.google.common.hash.Hasher[] int
StackMap stack:
aload 2
iload 3
aload 0
getfield com.google.common.hash.AbstractCompositeHashFunction.functions:[Lcom/google/common/hash/HashFunction;
iload 3
aaload
iload 1
invokeinterface com.google.common.hash.HashFunction.newHasher:(I)Lcom/google/common/hash/Hasher;
aastore
7: iinc 3 1
StackMap locals:
StackMap stack:
8: iload 3
aload 2
arraylength
if_icmplt 6
end local 3 9: aload 0
aload 2
invokevirtual com.google.common.hash.AbstractCompositeHashFunction.fromHashers:([Lcom/google/common/hash/Hasher;)Lcom/google/common/hash/Hasher;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 10 0 this Lcom/google/common/hash/AbstractCompositeHashFunction;
0 10 1 expectedInputSize I
4 10 2 hashers [Lcom/google/common/hash/Hasher;
5 9 3 i I
MethodParameters:
Name Flags
expectedInputSize
private com.google.common.hash.Hasher fromHashers(com.google.common.hash.Hasher[]);
descriptor: ([Lcom/google/common/hash/Hasher;)Lcom/google/common/hash/Hasher;
flags: (0x0002) ACC_PRIVATE
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: new com.google.common.hash.AbstractCompositeHashFunction$1
dup
aload 0
aload 1
invokespecial com.google.common.hash.AbstractCompositeHashFunction$1.<init>:(Lcom/google/common/hash/AbstractCompositeHashFunction;[Lcom/google/common/hash/Hasher;)V
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/google/common/hash/AbstractCompositeHashFunction;
0 1 1 hashers [Lcom/google/common/hash/Hasher;
MethodParameters:
Name Flags
hashers final
}
SourceFile: "AbstractCompositeHashFunction.java"
NestMembers:
com.google.common.hash.AbstractCompositeHashFunction$1
InnerClasses:
com.google.common.hash.AbstractCompositeHashFunction$1
RuntimeVisibleAnnotations:
com.google.errorprone.annotations.Immutable()