public enum DefaultMemberFilter extends Enum<DefaultMemberFilter> implements MemberFilter
| Enum Constant and Description |
|---|
ALL_MEMBERS |
NORMAL_FIELDS |
NORMAL_METHODS |
TOP_LEVEL_MEMBERS |
| Modifier and Type | Method and Description |
|---|---|
static DefaultMemberFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefaultMemberFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfacceptpublic static final DefaultMemberFilter ALL_MEMBERS
public static final DefaultMemberFilter NORMAL_FIELDS
public static final DefaultMemberFilter NORMAL_METHODS
public static final DefaultMemberFilter TOP_LEVEL_MEMBERS
public static DefaultMemberFilter[] values()
for (DefaultMemberFilter c : DefaultMemberFilter.values()) System.out.println(c);
public static DefaultMemberFilter 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 © 2014 Boleslav Bobcik - Auderis. All rights reserved.