- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.lang.model.type.MirroredTypesException
-
- javax.lang.model.type.MirroredTypeException
-
- All Implemented Interfaces:
-
Serializable
public class MirroredTypeException extends MirroredTypesException
当应用程序尝试访问对应于TypeMirror
的对象时抛出 。- 从以下版本开始:
- 1.6
- 另请参见:
-
MirroredTypesException
,Element.getAnnotation(Class)
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 MirroredTypeException(TypeMirror type)
为指定的类型构造一个新的MirroredTypeException。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 TypeMirror
getTypeMirror()
返回与正在访问的类型相对应的类型镜像。-
Methods inherited from class javax.lang.model.type.MirroredTypesException
getTypeMirrors
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
MirroredTypeException
public MirroredTypeException(TypeMirror type)
为指定的类型构造一个新的MirroredTypeException。- 参数
-
type
- 正在访问的类型
-
-
方法详细信息
-
getTypeMirror
public TypeMirror getTypeMirror()
返回与正在访问的类型相对应的类型镜像。 如果此异常已被序列化,然后再读入,则类型镜可能不可用。- 结果
-
类型镜像,或
null
如果不可用)
-
-