elemental2.dom.DOMTokenList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jacline-elemental2-dom Show documentation
Show all versions of jacline-elemental2-dom Show documentation
Thin Java abstractions for the standard built-in objects for
Javascript.
The newest version!
package elemental2.dom;
import jsinterop.base.JsArrayLike;
import jsinterop.annotations.JsMethod;
import java.lang.String;
import jsinterop.annotations.JsType;
import jsinterop.annotations.JsPackage;
import elemental2.core.JsIteratorIterable;
@JsType(isNative = true,namespace = JsPackage.GLOBAL)
public class DOMTokenList implements JsArrayLike{
public int length;
public String value;
public native void add(String... var_args);
public native boolean contains(String token);
public native String item(int index);
public native void remove(String... var_args);
public native void replace(String token,String newToken);
public native boolean supports(String token);
@JsMethod(name = "toString")
public native String toString_();
public native boolean toggle(String token,boolean force);
public native boolean toggle(String token);
public native JsIteratorIterable values();
}