public enum MemberAccessKind extends Enum<MemberAccessKind>
| Modifier and Type | Method and Description |
|---|---|
static MemberAccessKind |
getForOperator(String strOperator) |
static MemberAccessKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MemberAccessKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MemberAccessKind NORMAL
public static final MemberAccessKind NULL_SAFE
public static final MemberAccessKind EXPANSION
public static MemberAccessKind[] values()
for (MemberAccessKind c : MemberAccessKind.values()) System.out.println(c);
public static MemberAccessKind 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 nullpublic static MemberAccessKind getForOperator(String strOperator)
Copyright © 2022. All rights reserved.