Trait

org.clapper.classutil

MethodInfo

Related Doc: package classutil

Permalink

trait MethodInfo extends BaseInfo

Information about a method, as read from a class file.

Linear Supertypes
BaseInfo, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MethodInfo
  2. BaseInfo
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val descriptor: String

    Permalink

    The method's descriptor which describes it's arg types and return type.

    The method's descriptor which describes it's arg types and return type. Ex: (ILjava/lang/String;)[I

  2. abstract val exceptions: List[String]

    Permalink

    A list of the checked exceptions (as class names) that the method throws, or an empty list if it throws no known checked exceptions.

  3. abstract val modifiers: Set[Modifier]

    Permalink

    The entity's modifiers.

    The entity's modifiers.

    Definition Classes
    BaseInfo
  4. abstract val name: String

    Permalink

    The name of the entity.

    The name of the entity.

    Definition Classes
    BaseInfo
  5. abstract val signature: String

    Permalink

    The method's JVM signature (only available with generics).

    The method's JVM signature (only available with generics). Ex: java.util.List.iterator ()Ljava/util/Iterator<TE;>;

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(o: Any): Boolean

    Permalink
    Definition Classes
    MethodInfo → AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    MethodInfo → AnyRef → Any
  11. def isAbstract: Boolean

    Permalink

    Convenience method that determines whether the class is abstract This method is just shorthand for:

    Convenience method that determines whether the class is abstract This method is just shorthand for:

    modifiers contains Modifier.Abstract
    Definition Classes
    BaseInfo
  12. def isConcrete: Boolean

    Permalink

    Convenience method to determine whether the class is concrete (i.e., isn't abstract and isn't an interface).

    Convenience method to determine whether the class is concrete (i.e., isn't abstract and isn't an interface).

    Definition Classes
    BaseInfo
  13. def isFinal: Boolean

    Permalink

    Convenience methods that determines whether the class is final.

    Convenience methods that determines whether the class is final. This method is just shorthand for:

    modifiers contains Modifier.Final
    Definition Classes
    BaseInfo
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. def isInterface: Boolean

    Permalink

    Convenience method that determines whether the class implements an interface.

    Convenience method that determines whether the class implements an interface. This method is just shorthand for:

    modifiers contains Modifier.Interface
    Definition Classes
    BaseInfo
  16. def isPrivate: Boolean

    Permalink

    Convenience method that determines whether the class is private.

    Convenience method that determines whether the class is private. This method is just shorthand for:

    modifiers contains Modifier.Private
    Definition Classes
    BaseInfo
  17. def isProtected: Boolean

    Permalink

    Convenience method that determines whether the class is protected.

    Convenience method that determines whether the class is protected. This method is just shorthand for:

    modifiers contains Modifier.Protected
    Definition Classes
    BaseInfo
  18. def isPublic: Boolean

    Permalink

    Convenience methods that determines whether the class is public.

    Convenience methods that determines whether the class is public. This method is just shorthand for:

    modifiers contains Modifier.Public
    Definition Classes
    BaseInfo
  19. def isStatic: Boolean

    Permalink

    Convenience methods that determines whether the class is static.

    Convenience methods that determines whether the class is static. This method is just shorthand for:

    modifiers contains Modifier.Static
    Definition Classes
    BaseInfo
  20. def isSynchronized: Boolean

    Permalink

    Convenience methods that determines whether the class is synchronized.

    Convenience methods that determines whether the class is synchronized. This method is just shorthand for:

    modifiers contains Modifier.Synchronized
    Definition Classes
    BaseInfo
  21. def isSynthetic: Boolean

    Permalink

    Convenience methods that determines whether the class is synthetic.

    Convenience methods that determines whether the class is synthetic. This method is just shorthand for:

    modifiers contains Modifier.Synthetic
    Definition Classes
    BaseInfo
  22. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. def toString(): String

    Permalink

    A printable version of the method.

    A printable version of the method. Currently, the string is the method name plus descriptor.

    Definition Classes
    MethodInfo → BaseInfo → AnyRef → Any
  27. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from BaseInfo

Inherited from AnyRef

Inherited from Any

Ungrouped