public enum MemberType extends java.lang.Enum<MemberType>
| Enum Constant and Description |
|---|
All |
Constructor |
Custom |
Field |
Method |
NestedType |
TypeInfo |
| Modifier and Type | Method and Description |
|---|---|
static java.util.Set<MemberType> |
constructorsOnly() |
static java.util.Set<MemberType> |
customOnly() |
static java.util.Set<MemberType> |
fieldsOnly() |
static java.util.Set<MemberType> |
methodsOnly() |
static java.util.Set<MemberType> |
nestedTypesOnly() |
static java.util.Set<MemberType> |
of(MemberType m1) |
static java.util.Set<MemberType> |
of(MemberType m1,
MemberType... others) |
static java.util.Set<MemberType> |
of(MemberType m1,
MemberType m2) |
static java.util.Set<MemberType> |
of(MemberType m1,
MemberType m2,
MemberType m3) |
static java.util.Set<MemberType> |
of(MemberType m1,
MemberType m2,
MemberType m3,
MemberType m4) |
static java.util.Set<MemberType> |
of(MemberType m1,
MemberType m2,
MemberType m3,
MemberType m4,
MemberType m5) |
static java.util.Set<MemberType> |
typesOnly() |
static MemberType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MemberType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MemberType Constructor
public static final MemberType Field
public static final MemberType Method
public static final MemberType TypeInfo
public static final MemberType Custom
public static final MemberType NestedType
public static final MemberType All
public static MemberType[] values()
for (MemberType c : MemberType.values()) System.out.println(c);
public static MemberType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullpublic static java.util.Set<MemberType> constructorsOnly()
public static java.util.Set<MemberType> fieldsOnly()
public static java.util.Set<MemberType> methodsOnly()
public static java.util.Set<MemberType> typesOnly()
public static java.util.Set<MemberType> customOnly()
public static java.util.Set<MemberType> nestedTypesOnly()
public static java.util.Set<MemberType> of(MemberType m1)
public static java.util.Set<MemberType> of(MemberType m1, MemberType m2)
public static java.util.Set<MemberType> of(MemberType m1, MemberType m2, MemberType m3)
public static java.util.Set<MemberType> of(MemberType m1, MemberType m2, MemberType m3, MemberType m4)
public static java.util.Set<MemberType> of(MemberType m1, MemberType m2, MemberType m3, MemberType m4, MemberType m5)
public static java.util.Set<MemberType> of(MemberType m1, MemberType... others)