react4j.annotations.Feature Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of react4j-annotations Show documentation
Show all versions of react4j-annotations Show documentation
Annotations for defining a react component
package react4j.annotations;
/**
* Enum to declare whether a specific feature should be present.
*/
public enum Feature
{
/**
* Feature should be present.
*/
ENABLE,
/**
* Feature should not be present.
*/
DISABLE,
/**
* Feature should be present if supporting infrastructure is detected.
*/
AUTODETECT
}