Class ModuleHashesAttribute


  • public final class ModuleHashesAttribute
    extends org.objectweb.asm.Attribute
    A ModuleHashes attribute. This attribute is specific to the OpenJDK and may change in the future.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String algorithm
      The name of the hashing algorithm.
      java.util.List<byte[]> hashes
      The hash of the modules in modules.
      java.util.List<java.lang.String> modules
      A list of module names.
      • Fields inherited from class org.objectweb.asm.Attribute

        type
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected org.objectweb.asm.Attribute read​(org.objectweb.asm.ClassReader classReader, int offset, int length, char[] charBuffer, int codeAttributeOffset, org.objectweb.asm.Label[] labels)  
      protected org.objectweb.asm.ByteVector write​(org.objectweb.asm.ClassWriter classWriter, byte[] code, int codeLength, int maxStack, int maxLocals)  
      • Methods inherited from class org.objectweb.asm.Attribute

        getLabels, isCodeAttribute, isUnknown
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • algorithm

        public java.lang.String algorithm
        The name of the hashing algorithm.
      • modules

        public java.util.List<java.lang.String> modules
        A list of module names.
      • hashes

        public java.util.List<byte[]> hashes
        The hash of the modules in modules. The two lists must have the same size.
    • Constructor Detail

      • ModuleHashesAttribute

        public ModuleHashesAttribute​(java.lang.String algorithm,
                                     java.util.List<java.lang.String> modules,
                                     java.util.List<byte[]> hashes)
        Constructs a new ModuleHashesAttribute.
        Parameters:
        algorithm - the name of the hashing algorithm.
        modules - a list of module names.
        hashes - the hash of the modules in 'modules'. The two lists must have the same size.
      • ModuleHashesAttribute

        public ModuleHashesAttribute()
        Constructs an empty ModuleHashesAttribute. This object can be passed as a prototype to the ClassReader.accept(org.objectweb.asm.ClassVisitor, Attribute[], int) method.
    • Method Detail

      • read

        protected org.objectweb.asm.Attribute read​(org.objectweb.asm.ClassReader classReader,
                                                   int offset,
                                                   int length,
                                                   char[] charBuffer,
                                                   int codeAttributeOffset,
                                                   org.objectweb.asm.Label[] labels)
        Overrides:
        read in class org.objectweb.asm.Attribute
      • write

        protected org.objectweb.asm.ByteVector write​(org.objectweb.asm.ClassWriter classWriter,
                                                     byte[] code,
                                                     int codeLength,
                                                     int maxStack,
                                                     int maxLocals)
        Overrides:
        write in class org.objectweb.asm.Attribute