< prev index next > src/java.base/share/classes/java/lang/classfile/Attributes.java
Print this page
public static final String NAME_INNER_CLASSES = "InnerClasses";
/** LineNumberTable */
public static final String NAME_LINE_NUMBER_TABLE = "LineNumberTable";
+ /** LoadableDescriptors */
+ public static final String NAME_LOADABLE_DESCRIPTORS = "LoadableDescriptors";
+
/** LocalVariableTable */
public static final String NAME_LOCAL_VARIABLE_TABLE = "LocalVariableTable";
/** LocalVariableTypeTable */
public static final String NAME_LOCAL_VARIABLE_TYPE_TABLE = "LocalVariableTypeTable";
*/
public static AttributeMapper<LineNumberTableAttribute> lineNumberTable() {
return LineNumberTableMapper.INSTANCE;
}
+ /**
+ * {@return Attribute mapper for the {@code LoadableDescriptors} attribute}
+ * @since 23
+ */
+ public static AttributeMapper<LoadableDescriptorsAttribute> loadableDescriptors() {
+ return LoadableDescriptorsMapper.INSTANCE;
+ }
+
/**
* {@return the mapper for the {@code LocalVariableTable} attribute}
* The mapper permits multiple instances in a {@code Code} attribute.
* This has a data dependency on {@linkplain AttributeStability#LABELS labels}.
*/
< prev index next >