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

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

There is a newer version: 0.9.3
Show 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