Interface JandexTypeSwitch<T>
- All Known Implementing Classes:
JandexTypeSwitchStandard
public interface JandexTypeSwitch<T>
-
Method Summary
Modifier and TypeMethodDescriptioncaseArrayType(org.jboss.jandex.ArrayType genericArrayType, SourceModelBuildingContext buildingContext) caseClass(org.jboss.jandex.ClassType classType, SourceModelBuildingContext buildingContext) caseParameterizedType(org.jboss.jandex.ParameterizedType parameterizedType, SourceModelBuildingContext buildingContext) casePrimitive(org.jboss.jandex.PrimitiveType primitiveType, SourceModelBuildingContext buildingContext) caseTypeVariable(org.jboss.jandex.TypeVariable typeVariable, SourceModelBuildingContext buildingContext) caseTypeVariableReference(org.jboss.jandex.TypeVariableReference typeVariableReference, SourceModelBuildingContext buildingContext) caseVoid(org.jboss.jandex.VoidType voidType, SourceModelBuildingContext buildingContext) caseWildcardType(org.jboss.jandex.WildcardType wildcardType, SourceModelBuildingContext buildingContext) defaultCase(org.jboss.jandex.Type t, SourceModelBuildingContext buildingContext)
-
Method Details
-
caseClass
-
casePrimitive
T casePrimitive(org.jboss.jandex.PrimitiveType primitiveType, SourceModelBuildingContext buildingContext) -
caseVoid
-
caseParameterizedType
T caseParameterizedType(org.jboss.jandex.ParameterizedType parameterizedType, SourceModelBuildingContext buildingContext) -
caseWildcardType
T caseWildcardType(org.jboss.jandex.WildcardType wildcardType, SourceModelBuildingContext buildingContext) -
caseTypeVariable
T caseTypeVariable(org.jboss.jandex.TypeVariable typeVariable, SourceModelBuildingContext buildingContext) -
caseTypeVariableReference
T caseTypeVariableReference(org.jboss.jandex.TypeVariableReference typeVariableReference, SourceModelBuildingContext buildingContext) -
caseArrayType
T caseArrayType(org.jboss.jandex.ArrayType genericArrayType, SourceModelBuildingContext buildingContext) -
defaultCase
-