Skip to content

hide1202/ClassPreLoader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Class Pre-Loader

  • A library that can pre-load classes for that needs to pre-call static initializer.

Example

PreLoadable annotation

  • You can pre-load classes attached PreLoadable annotation.
  • For example
// You want to pre-load classes that has com.me prefix and that attach PreLoadable annotation
ClassPreLoader loader = new ClassPreLoader("com.me");
loader.loadForPreLoadable();

Custom annotation

  • You can pre-load classes attached custom annotation.
  • For example
// You want to pre-load classes that has com.me prefix and that attach custom annotation.  
ClassPreLoader loader = new ClassPreLoader("com.me");
loader.load(CustomAnnotation.class);

Releases

No releases published

Packages

No packages published

Languages