Class/Object

org.clapper.classutil

ClassFinder

Related Docs: object ClassFinder | package classutil

Permalink

class ClassFinder extends AnyRef

A ClassFinder finds classes in a class path, returning the result in a lazy iterator. The iterator can then be filtered, mapped, or passed to the utility methods in the ClassFinder companion object.

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

Instance Constructors

  1. new ClassFinder(path: Seq[File], maybeOverrideAsmVersion: Option[Int])

    Permalink

    path

    a sequence of directories, jars and zips to search

    maybeOverrideAsmVersion

    the version of asm to be used. Defaults to v6. To override use one of the ASM-fields in org.objectweb.asm.Opcodes (e.g., (org.objectweb.asm.Opcodes.ASM5).

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. val classpath: List[File]

    Permalink
  6. def clone(): AnyRef

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

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  11. def getClasses(): LazyList[ClassInfo]

    Permalink

    Find all classes in the specified path, which can contain directories, zip files and jar files.

    Find all classes in the specified path, which can contain directories, zip files and jar files. Returns metadata about each class in a ClassInfo object. The ClassInfo objects are returned lazily, rather than loaded all up-front.

    returns

    a LazyList of ClassInfo objects. When compiling against versions of Scala prior to 2.13.0, this result is really a scala.Stream object. (There's a compatibility type definition with the classutil library.)

  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped