public enum NestingKind extends Enum<NestingKind >
Note that it is possible additional nesting kinds will be added in future versions of the platform.
Example: The classes below are annotated with their nesting kind.
import java.lang.annotation.*;
import static java.lang.annotation.RetentionPolicy.*;
import javax.lang.model.element.*;
import static javax.lang.model.element.NestingKind.*;
@Nesting(TOP_LEVEL)
public class NestingExamples {
@Nesting(MEMBER)
static class MemberClass1{}
@Nesting(MEMBER)
class MemberClass2{}
public static void main(String... argv) {
@Nesting(LOCAL)
class LocalClass{};
Class<?>[] classes = {
NestingExamples.class,
MemberClass1.class,
MemberClass2.class,
LocalClass.class
};
for(Class<?> clazz : classes) {
System.out.format("%s is %s%n",
clazz.getName(),
clazz.getAnnotation(Nesting.class).value());
}
}
}
@Retention(RUNTIME)
@interface Nesting {
NestingKind value();
}
| Enum Constant and Description |
|---|
ANONYMOUS
A type without a name.
|
LOCAL
A named type declared within a construct other than a type.
|
MEMBER
A type that is a named member of another type.
|
TOP_LEVEL
A top-level type, not contained within another type.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isNested()
Does this constant correspond to a nested type element? A
nested type element is any that is not top-level.
|
static NestingKind |
valueOf(String
Returns the enum constant of this type with the specified name.
|
static NestingKind |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final NestingKindTOP_LEVEL
public static final NestingKindMEMBER
public static final NestingKindLOCAL
public static final NestingKindANONYMOUS
public static NestingKind[] values()
for (NestingKind c : NestingKind.values()) System.out.println(c);
public static NestingKindvalueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null
public boolean isNested()