public enum MemberCategory extends Enum<MemberCategory>
| Modifier and Type | Method and Description |
|---|---|
static MemberCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MemberCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MemberCategory PUBLIC_FIELDS
public static final MemberCategory DECLARED_FIELDS
public static final MemberCategory INTROSPECT_PUBLIC_CONSTRUCTORS
public static final MemberCategory INTROSPECT_DECLARED_CONSTRUCTORS
public static final MemberCategory INVOKE_PUBLIC_CONSTRUCTORS
public static final MemberCategory INVOKE_DECLARED_CONSTRUCTORS
public static final MemberCategory INTROSPECT_PUBLIC_METHODS
public static final MemberCategory INTROSPECT_DECLARED_METHODS
public static final MemberCategory INVOKE_PUBLIC_METHODS
public static final MemberCategory INVOKE_DECLARED_METHODS
public static final MemberCategory PUBLIC_CLASSES
public static final MemberCategory DECLARED_CLASSES
public static MemberCategory[] values()
for (MemberCategory c : MemberCategory.values()) System.out.println(c);
public static MemberCategory 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 © 2023 Seata. All rights reserved.