mirror of
https://github.com/zaaarf/lillero.git
synced 2024-11-12 18:49:23 +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;
|
package ftbsc.lll.proxies;
|
||||||
|
|
||||||
|
import ftbsc.lll.proxies.impl.*;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An enum listing the various proxies.
|
* An enum listing the various proxies.
|
||||||
*/
|
*/
|
||||||
public enum ProxyType {
|
public enum ProxyType {
|
||||||
|
|
||||||
|
/** Indicates it's a {@link FieldProxy}. */
|
||||||
FIELD,
|
FIELD,
|
||||||
|
|
||||||
|
/** Indicates it's a {@link MethodProxy}. */
|
||||||
|
|
||||||
METHOD,
|
METHOD,
|
||||||
|
|
||||||
|
/** Indicates it's a {@link TypeProxy}. */
|
||||||
|
|
||||||
TYPE,
|
TYPE,
|
||||||
|
|
||||||
|
/** Indicates it's a {@link PackageProxy}. */
|
||||||
|
|
||||||
PACKAGE
|
PACKAGE
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue