public static enum ObjectType.FrameworkType extends Enum<ObjectType.FrameworkType> implements Type
| Enum Constant and Description |
|---|
BACKBONE_MODEL |
BACKBONE_MODEL_OBJECT |
JQUERY_OBJECT |
JQUERY_SELECTOR_OBJECT |
| Modifier and Type | Method and Description |
|---|---|
static ObjectType.FrameworkType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectType.FrameworkType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectType.FrameworkType JQUERY_SELECTOR_OBJECT
public static final ObjectType.FrameworkType JQUERY_OBJECT
public static final ObjectType.FrameworkType BACKBONE_MODEL
public static final ObjectType.FrameworkType BACKBONE_MODEL_OBJECT
public static ObjectType.FrameworkType[] values()
for (ObjectType.FrameworkType c : ObjectType.FrameworkType.values()) System.out.println(c);
public static ObjectType.FrameworkType 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.