public enum RemoteObjectSubtype extends Enum<RemoteObjectSubtype>
| Enum Constant and Description |
|---|
ARRAY |
ARRAYBUFFER |
DATAVIEW |
DATE |
ERROR |
GENERATOR |
ITERATOR |
MAP |
NODE |
NULL |
PROMISE |
PROXY |
REGEXP |
SET |
TYPEDARRAY |
WEAKMAP |
WEAKSET |
| Modifier and Type | Method and Description |
|---|---|
static RemoteObjectSubtype |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RemoteObjectSubtype[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoteObjectSubtype ARRAY
public static final RemoteObjectSubtype NULL
public static final RemoteObjectSubtype NODE
public static final RemoteObjectSubtype REGEXP
public static final RemoteObjectSubtype DATE
public static final RemoteObjectSubtype MAP
public static final RemoteObjectSubtype SET
public static final RemoteObjectSubtype WEAKMAP
public static final RemoteObjectSubtype WEAKSET
public static final RemoteObjectSubtype ITERATOR
public static final RemoteObjectSubtype GENERATOR
public static final RemoteObjectSubtype ERROR
public static final RemoteObjectSubtype PROXY
public static final RemoteObjectSubtype PROMISE
public static final RemoteObjectSubtype TYPEDARRAY
public static final RemoteObjectSubtype ARRAYBUFFER
public static final RemoteObjectSubtype DATAVIEW
public static RemoteObjectSubtype[] values()
for (RemoteObjectSubtype c : RemoteObjectSubtype.values()) System.out.println(c);
public static RemoteObjectSubtype valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.