001package react4j.annotations; 002 003/** 004 * Enum to declare whether a specific feature should be present. 005 */ 006public enum Feature 007{ 008 /** 009 * Feature should be present. 010 */ 011 ENABLE, 012 /** 013 * Feature should not be present. 014 */ 015 DISABLE, 016 /** 017 * Feature should be present if supporting infrastructure is detected. 018 */ 019 AUTODETECT 020}