- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.lang.model.type.MirroredTypesException
-
- javax.lang.model.type.MirroredTypeException
-
- 实现的所有接口
-
Serializable
public class MirroredTypeException extends MirroredTypesException
应用程序尝试访问TypeMirror
对应的类
对象时抛出 。- 从以下版本开始:
- 1.6
- 另请参见:
-
MirroredTypesException
,Element.getAnnotation(Class)
, Serialized Form
-
-
构造方法摘要
构造方法 构造器 描述 MirroredTypeException(TypeMirror type)
为指定的类型构造一个新的MirroredTypeException。
-
方法摘要
所有方法 实例方法 具体的方法 变量和类型 方法 描述 TypeMirror
getTypeMirror()
返回与正在访问的类型对应的类型镜像。-
声明方法的类 javax.lang.model.type.MirroredTypesException
getTypeMirrors
-
-
-
-
构造方法详细信息
-
MirroredTypeException
public MirroredTypeException(TypeMirror type)
为指定的类型构造一个新的MirroredTypeException。- 参数
-
type
- 正在访问的类型
-
-
方法详细信息
-
getTypeMirror
public TypeMirror getTypeMirror()
返回与正在访问的类型对应的类型镜像。 如果已将此异常序列化并重新读入,则类型镜像可能不可用。- 结果
-
类型镜像,如果不可用,
null
-
-