类 TypeParameterNode
- java.lang.Object
-
- proguard.classfile.attribute.signature.ast.signature.TypeParameterNode
-
-
构造器概要
构造器 构造器 说明 TypeParameterNode(@NotNull java.lang.String identifier, @NotNull ClassBoundNode classBound, @NotNull java.util.List<InterfaceBoundNode> interfaceBounds)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 <R,P>
Raccept(ASTNodeVisitor<R,P> visitor, P arg)@NotNull ClassBoundNodegetClassBound()@NotNull java.lang.StringgetIdentifier()@NotNull java.util.List<InterfaceBoundNode>getInterfaceBounds()voidsetClassBound(@NotNull ClassBoundNode classBound)voidsetIdentifier(@NotNull java.lang.String identifier)voidsetInterfaceBounds(@NotNull java.util.List<InterfaceBoundNode> interfaceBounds)@NotNull java.lang.StringtoString()
-
-
-
构造器详细资料
-
TypeParameterNode
public TypeParameterNode(@NotNull @NotNull java.lang.String identifier, @NotNull @NotNull ClassBoundNode classBound, @NotNull @NotNull java.util.List<InterfaceBoundNode> interfaceBounds)
-
-
方法详细资料
-
getIdentifier
@NotNull public @NotNull java.lang.String getIdentifier()
-
setIdentifier
public void setIdentifier(@NotNull @NotNull java.lang.String identifier)
-
getClassBound
@NotNull public @NotNull ClassBoundNode getClassBound()
-
setClassBound
public void setClassBound(@NotNull @NotNull ClassBoundNode classBound)
-
getInterfaceBounds
@NotNull public @NotNull java.util.List<InterfaceBoundNode> getInterfaceBounds()
-
setInterfaceBounds
public void setInterfaceBounds(@NotNull @NotNull java.util.List<InterfaceBoundNode> interfaceBounds)
-
accept
public <R,P> R accept(ASTNodeVisitor<R,P> visitor, P arg)
-
toString
@NotNull public @NotNull java.lang.String toString()
- 覆盖:
toString在类中java.lang.Object
-
-