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

com.g2forge.alexandria.java.reflect.JavaScope Maven / Gradle / Ivy

There is a newer version: 0.0.18
Show newest version
package com.g2forge.alexandria.java.reflect;

import lombok.Getter;
import lombok.RequiredArgsConstructor;

@RequiredArgsConstructor
public enum JavaScope {
	Static(false, true),
	Instance(false, false),
	Inherited(true, false);

	@Getter
	protected final boolean inherited;

	@Getter
	protected final boolean statics;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy