public static enum DeclaredMembers.View extends Enum<DeclaredMembers.View>
Enum
implementation that provides different views of a class's members.Enum Constant and Description |
---|
CONSTRUCTORS |
FIELDS |
METHODS |
Modifier and Type | Method and Description |
---|---|
static DeclaredMembers.View |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeclaredMembers.View[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeclaredMembers.View CONSTRUCTORS
public static final DeclaredMembers.View METHODS
public static final DeclaredMembers.View FIELDS
public static DeclaredMembers.View[] values()
for (DeclaredMembers.View c : DeclaredMembers.View.values()) System.out.println(c);
public static DeclaredMembers.View 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 © 2017. All rights reserved.