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

com.cryptomorin.xseries.reflection.constraint.VisibilityConstraint Maven / Gradle / Ivy

There is a newer version: 12.1.0
Show newest version
package com.cryptomorin.xseries.reflection.constraint;

import com.cryptomorin.xseries.reflection.ReflectiveHandle;
import org.jetbrains.annotations.ApiStatus;

@ApiStatus.Experimental
public enum VisibilityConstraint implements ReflectiveConstraint {
    PUBLIC {
        @Override
        public boolean appliesTo(ReflectiveHandle handle) {
            return false;
        }
    };

    @Override
    public String category() {
        return "Visibility";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy