-
- All Superinterfaces:
-
Comparable<Object>
,Doc
,ExecutableMemberDoc
,MemberDoc
,ProgramElementDoc
- All Known Subinterfaces:
-
AnnotationTypeElementDoc
已过时。该包中的声明已被包装jdk.javadoc.doclet
的声明所取代。 有关详细信息,请参阅该软件包的文档中的“ 迁移指南” 。
@Deprecated public interface MethodDoc extends ExecutableMemberDoc
表示java类的方法。- 从以下版本开始:
- 1.2
-
-
方法摘要
所有方法 接口方法 抽象方法 弃用的方法 Modifier and Type 方法 描述 boolean
isAbstract()
已过时。如果这个方法是抽象的,返回trueboolean
isDefault()
已过时。如果此方法为默认值,则返回trueClassDoc
overriddenClass()
已过时。返回包含此方法覆盖的方法的类。MethodDoc
overriddenMethod()
已过时。返回此方法覆盖的方法。Type
overriddenType()
已过时。返回包含此方法覆盖的方法的类型。boolean
overrides(MethodDoc meth)
已过时。测试此方法是否覆盖其他方法。Type
returnType()
已过时。获取返回类型。-
Methods inherited from interface com.sun.javadoc.Doc
commentText, compareTo, firstSentenceTags, getRawCommentText, inlineTags, isAnnotationType, isAnnotationTypeElement, isClass, isConstructor, isEnum, isEnumConstant, isError, isException, isField, isIncluded, isInterface, isMethod, isOrdinaryClass, name, position, seeTags, setRawCommentText, tags, tags
-
Methods inherited from interface com.sun.javadoc.ExecutableMemberDoc
flatSignature, isNative, isSynchronized, isVarArgs, parameters, paramTags, receiverType, signature, thrownExceptions, thrownExceptionTypes, throwsTags, typeParameters, typeParamTags
-
Methods inherited from interface com.sun.javadoc.MemberDoc
isSynthetic
-
Methods inherited from interface com.sun.javadoc.ProgramElementDoc
annotations, containingClass, containingPackage, isFinal, isPackagePrivate, isPrivate, isProtected, isPublic, isStatic, modifiers, modifierSpecifier, qualifiedName
-
-
-
-
方法详细信息
-
isAbstract
boolean isAbstract()
已过时。如果这个方法是抽象的,返回true- 结果
- 如果此方法是抽象的,则为true
-
isDefault
boolean isDefault()
已过时。如果此方法为默认值,则返回true- 结果
- 如果此方法为默认值,则为true
-
returnType
Type returnType()
已过时。获取返回类型。- 结果
- 此方法的返回类型,如果是构造函数,则为null。
-
overriddenClass
ClassDoc overriddenClass()
已过时。返回包含此方法覆盖的方法的类。overriddenClass
方法不能容纳某些通用类型的构造。 应该使用overriddenType
方法。- 结果
- 一个ClassDoc表示定义此方法覆盖的方法的超类,如果此方法不覆盖,则为null。
-
overriddenType
Type overriddenType()
已过时。返回包含此方法覆盖的方法的类型。 它可能是一个ClassDoc
或ParameterizedType
。- 结果
- 该方法被覆盖的超类型,如果此方法不覆盖超类中的另一个,则为null
- 从以下版本开始:
- 1.5
-
overriddenMethod
MethodDoc overriddenMethod()
已过时。返回此方法覆盖的方法。- 结果
- 一个MethodDoc表示超类中的方法定义,此方法覆盖,如果此方法不覆盖,则为null。
-
overrides
boolean overrides(MethodDoc meth)
已过时。- 参数
-
meth
- 另一种检查方法 - 结果
-
true
如果此方法覆盖其他 - 从以下版本开始:
- 1.5
-
-