chore: javadocs

This commit is contained in:
zaaarf 2023-03-28 00:38:42 +02:00
parent 2722009779
commit 7a9f01e60f
No known key found for this signature in database
GPG key ID: 82240E075E31FA4C

View file

@ -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
}