
com.develhack.annotation.feature.Access Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of develhack-core Show documentation
Show all versions of develhack-core Show documentation
The underlying library for Develhack.
The newest version!
package com.develhack.annotation.feature;
/**
* Access level.
*/
public enum Access {
/** Public scope */
PUBLIC,
/** Protected scope */
PROTECTED,
/** Default (package private) scope */
DEFAULT,
/** private scope */
PRIVATE,
/** None (not present) */
NONE
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy