org.eclipse.jdt.core.dom.ITypeBinding
インスタンスをインスタンスに変換する一般的な方法を探していorg.eclipse.jdt.core.dom.Type
ます。これを行うにはAPI呼び出しが必要だと思いますが、見つけることができません。
特定のタイプに応じて、これを手動で行うさまざまな方法があるようです。
これらの特別なケースをすべて使わずに、ITypeBinding
を取得する一般的な方法はありますか?Type
を取り、String
を返すType
ことも許容されます。
アップデート
これまでの回答から、私はこれらすべての特殊なケースを処理する必要があるようです。これがそうする最初の試みです。これは完全には正しくないと確信しているので、精査することをお勧めします。
public static Type typeFromBinding(AST ast, ITypeBinding typeBinding) {
if( ast == null )
throw new NullPointerException("ast is null");
if( typeBinding == null )
throw new NullPointerException("typeBinding is null");
if( typeBinding.isPrimitive() ) {
return ast.newPrimitiveType(
PrimitiveType.toCode(typeBinding.getName()));
}
if( typeBinding.isCapture() ) {
ITypeBinding wildCard = typeBinding.getWildcard();
WildcardType capType = ast.newWildcardType();
ITypeBinding bound = wildCard.getBound();
if( bound != null ) {
capType.setBound(typeFromBinding(ast, bound)),
wildCard.isUpperbound());
}
return capType;
}
if( typeBinding.isArray() ) {
Type elType = typeFromBinding(ast, typeBinding.getElementType());
return ast.newArrayType(elType, typeBinding.getDimensions());
}
if( typeBinding.isParameterizedType() ) {
ParameterizedType type = ast.newParameterizedType(
typeFromBinding(ast, typeBinding.getErasure()));
@SuppressWarnings("unchecked")
List<Type> newTypeArgs = type.typeArguments();
for( ITypeBinding typeArg : typeBinding.getTypeArguments() ) {
newTypeArgs.add(typeFromBinding(ast, typeArg));
}
return type;
}
// simple or raw type
String qualName = typeBinding.getQualifiedName();
if( "".equals(qualName) ) {
throw new IllegalArgumentException("No name for type binding.");
}
return ast.newSimpleType(ast.newName(qualName));
}