Package org.jboss.jdeparser
Interface JTypeParamDef
-
- All Known Implementing Classes:
ImplJTypeParamDef
public interface JTypeParamDefA type parameter definition.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JTypeParamDef_extends(java.lang.Class<?> type)Add anextendsbound to this parameter.JTypeParamDef_extends(java.lang.String type)Add anextendsbound to this parameter.JTypeParamDef_extends(JType type)Add anextendsbound to this parameter.JTypeParamDef_super(java.lang.Class<?> type)Add asuperbound to this parameter.JTypeParamDef_super(java.lang.String type)Add asuperbound to this parameter.JTypeParamDef_super(JType type)Add asuperbound to this parameter.
-
-
-
Method Detail
-
_extends
JTypeParamDef _extends(java.lang.String type)
Add anextendsbound to this parameter.- Parameters:
type- the bound type- Returns:
- this type parameter definition
-
_extends
JTypeParamDef _extends(JType type)
Add anextendsbound to this parameter.- Parameters:
type- the bound type- Returns:
- this type parameter definition
-
_extends
JTypeParamDef _extends(java.lang.Class<?> type)
Add anextendsbound to this parameter.- Parameters:
type- the bound type- Returns:
- this type parameter definition
-
_super
JTypeParamDef _super(java.lang.String type)
Add asuperbound to this parameter.- Parameters:
type- the bound type- Returns:
- this type parameter definition
-
_super
JTypeParamDef _super(JType type)
Add asuperbound to this parameter.- Parameters:
type- the bound type- Returns:
- this type parameter definition
-
_super
JTypeParamDef _super(java.lang.Class<?> type)
Add asuperbound to this parameter.- Parameters:
type- the bound type- Returns:
- this type parameter definition
-
-