public static enum GQLExecutionContext.GQLRolesJunctionEnum extends Enum<GQLExecutionContext.GQLRolesJunctionEnum>
| Enum Constant and Description |
|---|
AND
In order to be read, saved or deleted, an Entity or an attribute must
have a client configuration allowing the action for all the roles in
this context.
|
OR
In order to be read, saved or deleted, an Entity or an attribute must
have a client configuration allowing the action for one of the roles
in this context.
|
| Modifier and Type | Method and Description |
|---|---|
static GQLExecutionContext.GQLRolesJunctionEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GQLExecutionContext.GQLRolesJunctionEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GQLExecutionContext.GQLRolesJunctionEnum AND
public static final GQLExecutionContext.GQLRolesJunctionEnum OR
public static GQLExecutionContext.GQLRolesJunctionEnum[] values()
for (GQLExecutionContext.GQLRolesJunctionEnum c : GQLExecutionContext.GQLRolesJunctionEnum.values()) System.out.println(c);
public static GQLExecutionContext.GQLRolesJunctionEnum 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 © 2019–2020. All rights reserved.