public static enum IImportNode.ImportKind extends Enum<IImportNode.ImportKind>
Enum Constant and Description |
---|
AS_SCOPED_IMPORT
A standard ActionScipt import that follows traditional scoping rules
|
IMPLICIT_IMPORT
An import that is implicit in the given scope, caused by generated
code found in MXML
|
MXML_NAMESPACE_IMPORT
An MXML style namespace import, of the form
xmlns:prefix="my.component
|
Modifier and Type | Method and Description |
---|---|
static IImportNode.ImportKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IImportNode.ImportKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IImportNode.ImportKind MXML_NAMESPACE_IMPORT
public static final IImportNode.ImportKind AS_SCOPED_IMPORT
public static final IImportNode.ImportKind IMPLICIT_IMPORT
public static IImportNode.ImportKind[] values()
for (IImportNode.ImportKind c : IImportNode.ImportKind.values()) System.out.println(c);
public static IImportNode.ImportKind 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 © 2016 The Apache Software Foundation. All rights reserved.