public static enum INamespaceDefinition.NamespaceClassification extends Enum<INamespaceDefinition.NamespaceClassification>
Enum Constant and Description |
---|
CLASS_MEMBER
A namespace that is a member of a class
|
FILE_MEMBER
A namespace that is a member of a file
|
LANGUAGE
A namespace that is part of the ActionScript language: public,
private, protected, internal
|
LOCAL
Local namespace contained with a non-visible scope
|
PACKAGE_MEMBER
A namespace that is a member of a package
|
Modifier and Type | Method and Description |
---|---|
static INamespaceDefinition.NamespaceClassification |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static INamespaceDefinition.NamespaceClassification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final INamespaceDefinition.NamespaceClassification LOCAL
public static final INamespaceDefinition.NamespaceClassification PACKAGE_MEMBER
public static final INamespaceDefinition.NamespaceClassification CLASS_MEMBER
public static final INamespaceDefinition.NamespaceClassification FILE_MEMBER
public static final INamespaceDefinition.NamespaceClassification LANGUAGE
public static INamespaceDefinition.NamespaceClassification[] values()
for (INamespaceDefinition.NamespaceClassification c : INamespaceDefinition.NamespaceClassification.values()) System.out.println(c);
public static INamespaceDefinition.NamespaceClassification 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.