Interface IJadxAttrType<T extends IJadxAttribute>
-
- All Known Implementing Classes:
JadxAttrType
public interface IJadxAttrType<T extends IJadxAttribute>Marker interface for attribute type. Similar to enumeration but extensible.Used for attach attribute instance class information (T). T - class of attribute instance
To create new one define static field like this:
static final IJadxAttrType<AttrTypeClass> ATTR_TYPE = IJadxAttrType.create();
-
-
Method Summary
Static Methods Modifier and Type Method Description static <A extends IJadxAttribute>
IJadxAttrType<A>create()static <A extends IJadxAttribute>
IJadxAttrType<A>create(java.lang.String name)
-
-
-
Method Detail
-
create
static <A extends IJadxAttribute> IJadxAttrType<A> create()
-
create
static <A extends IJadxAttribute> IJadxAttrType<A> create(java.lang.String name)
-
-