
public enum ORestrictedOperation extends Enum<ORestrictedOperation>
| Enum Constant and Description |
|---|
ALLOW_ALL
Allows all RUD rights.
|
ALLOW_DELETE
Allows Delete rights.
|
ALLOW_READ
Allows Read rights.
|
ALLOW_UPDATE
Allows Update rights.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getFieldName() |
static ORestrictedOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ORestrictedOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ORestrictedOperation ALLOW_ALL
public static final ORestrictedOperation ALLOW_READ
public static final ORestrictedOperation ALLOW_UPDATE
public static final ORestrictedOperation ALLOW_DELETE
public static ORestrictedOperation[] values()
for (ORestrictedOperation c : ORestrictedOperation.values()) System.out.println(c);
public static ORestrictedOperation 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 String getFieldName()
Copyright © 2009–2025 OrientDB. All rights reserved.