mirror of
https://github.com/zaaarf/lillero.git
synced 2024-11-10 01:29:22 +01:00
chore: javadocs
This commit is contained in:
parent
2722009779
commit
7a9f01e60f
1 changed files with 13 additions and 0 deletions
|
@ -1,11 +1,24 @@
|
|||
package ftbsc.lll.proxies;
|
||||
|
||||
import ftbsc.lll.proxies.impl.*;
|
||||
|
||||
/**
|
||||
* An enum listing the various proxies.
|
||||
*/
|
||||
public enum ProxyType {
|
||||
|
||||
/** Indicates it's a {@link FieldProxy}. */
|
||||
FIELD,
|
||||
|
||||
/** Indicates it's a {@link MethodProxy}. */
|
||||
|
||||
METHOD,
|
||||
|
||||
/** Indicates it's a {@link TypeProxy}. */
|
||||
|
||||
TYPE,
|
||||
|
||||
/** Indicates it's a {@link PackageProxy}. */
|
||||
|
||||
PACKAGE
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue