public enum AutocompleteDisableTarget extends java.lang.Enum<AutocompleteDisableTarget>
Enum Constant and Description |
---|
ALL
すべてのタグ
|
NONE
対象なし
|
PASSWORD
パスワードのみ
|
Modifier and Type | Method and Description |
---|---|
static boolean |
contains(java.lang.String target)
対象を表す文字列がこの列挙型に含まれているかを判定する。
大文字小文字を区別せずに列挙型の名前と比較する。
|
static java.util.List<java.lang.String> |
getTargets()
autocomplete属性をOFFにする対象を取得する。
|
static AutocompleteDisableTarget |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutocompleteDisableTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutocompleteDisableTarget ALL
public static final AutocompleteDisableTarget PASSWORD
public static final AutocompleteDisableTarget NONE
public static AutocompleteDisableTarget[] values()
for (AutocompleteDisableTarget c : AutocompleteDisableTarget.values()) System.out.println(c);
public static AutocompleteDisableTarget valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static java.util.List<java.lang.String> getTargets()
public static boolean contains(java.lang.String target)
target
- 対象を表す文字列