
com.develhack.annotation.feature.Access Maven / Gradle / Ivy
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