All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.develhack.annotation.feature.Access Maven / Gradle / Ivy

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