public static enum Type.Kind extends Enum<Type.Kind>
| Enum Constant and Description |
|---|
ARRAY |
BACKBONE_MODEL |
BACKBONE_MODEL_OBJECT |
BOOLEAN |
DOCUMENT |
DOM_ELEMENT |
FUNCTION |
JQUERY_OBJECT |
JQUERY_SELECTOR_OBJECT |
NUMBER |
OBJECT |
STRING |
UNKNOWN |
WINDOW |
| Modifier and Type | Method and Description |
|---|---|
static Type.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Type.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Type.Kind UNKNOWN
public static final Type.Kind STRING
public static final Type.Kind NUMBER
public static final Type.Kind BOOLEAN
public static final Type.Kind OBJECT
public static final Type.Kind FUNCTION
public static final Type.Kind ARRAY
public static final Type.Kind JQUERY_OBJECT
public static final Type.Kind JQUERY_SELECTOR_OBJECT
public static final Type.Kind BACKBONE_MODEL
public static final Type.Kind BACKBONE_MODEL_OBJECT
public static final Type.Kind WINDOW
public static final Type.Kind DOCUMENT
public static final Type.Kind DOM_ELEMENT
public static Type.Kind[] values()
for (Type.Kind c : Type.Kind.values()) System.out.println(c);
public static Type.Kind 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 © 2011–2015 SonarSource and Eriks Nukis. All rights reserved.