- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.lang.model.type.MirroredTypesException
-
- All Implemented Interfaces:
-
Serializable
- 已知直接子类:
-
MirroredTypeException
public class MirroredTypesException extends RuntimeException
当应用程序尝试访问Class
对象的每个对象TypeMirror
对象时抛出 。- 从以下版本开始:
- 1.6
- 另请参见:
-
MirroredTypeException
,Element.getAnnotation(Class)
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 MirroredTypesException(List<? extends TypeMirror> types)
为指定的类型构造一个新的MirroredTypesException。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 List<? extends TypeMirror>
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
-
-
-
-
构造方法详细信息
-
MirroredTypesException
public MirroredTypesException(List<? extends TypeMirror> types)
为指定的类型构造一个新的MirroredTypesException。- 参数
-
types
- 正在访问的类型
-
-
方法详细信息
-
getTypeMirrors
public List<? extends TypeMirror> getTypeMirrors()
返回与正在访问的类型相对应的类型镜像。 如果此异常已被序列化,然后再读入,则类型镜像可能不可用。- 结果
-
类型的镜像在施工顺序,或
null
如果不可用
-
-