001package react4j.dom.proptypes.html.attributeTypes; 002 003import java.lang.annotation.Documented; 004import javax.annotation.Nonnull; 005import org.intellij.lang.annotations.MagicConstant; 006 007/** 008 * An enumeration describing the whether elements can have their values automatically completed by the browser. 009 */ 010@Documented 011@MagicConstant( valuesFromClass = OnOff.class ) 012public @interface OnOff 013{ 014 /** 015 * The browser may not automatically complete entries. 016 */ 017 @Nonnull 018 String off = "off"; 019 /** 020 * The browser may automatically complete entries. 021 */ 022 @Nonnull 023 String on = "on"; 024}