Returns all classes loadable from the current class path. @since 16.0
()
| 114 | * @since 16.0 |
| 115 | */ |
| 116 | public ImmutableSet<ClassInfo> getAllClasses() { |
| 117 | return FluentIterable.from(resources).filter(ClassInfo.class).toSet(); |
| 118 | } |
| 119 | |
| 120 | /** Returns all top level classes loadable from the current class path. */ |
| 121 | public ImmutableSet<ClassInfo> getTopLevelClasses() { |