io.github.qsy7.property.api.enumeration.NoOperation Maven / Gradle / Ivy
The newest version!
package io.github.qsy7.property.api.enumeration;
import io.github.qsy7.property.api.annotation.DefaultValue;
import io.github.qsy7.property.api.property.ConfigurableProperty;
/** Should a "real" operation be performed or skipped? */
public interface NoOperation extends ConfigurableProperty {
@DefaultValue boolean DEFAULT = false;
}