com.g2forge.alexandria.java.reflect.JavaScope Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-java Show documentation
Show all versions of ax-java Show documentation
Standard Java library and the basis of the ${alexandria.name} project.
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